[memcached] bradfitz, r355: whitespace. (had written this test on a...

commits at code.sixapart.com commits at code.sixapart.com
Mon Sep 4 21:03:50 UTC 2006


whitespace.  (had written this test on a 64-bit machine without my .emacs file)



U   trunk/server/test/64bit.t


Modified: trunk/server/test/64bit.t
===================================================================
--- trunk/server/test/64bit.t	2006-09-04 20:51:37 UTC (rev 354)
+++ trunk/server/test/64bit.t	2006-09-04 21:03:49 UTC (rev 355)
@@ -17,20 +17,20 @@
 my $get_slabs = sub{
     print $sock "stats slabs\r\n";
     while (<$sock>) {
-	last if /^(\.|END)/;
-	/^STAT (\S+) (\d+)/;
-	#print " slabs: $_";
-	$slabs{$1} = $2;
+        last if /^(\.|END)/;
+        /^STAT (\S+) (\d+)/;
+        #print " slabs: $_";
+        $slabs{$1} = $2;
     }
 };
 
 my $get_stats = sub{
     print $sock "stats\r\n";
     while (<$sock>) {
-	last if /^(\.|END)/;
-	/^STAT (\S+) (\d+)/;
-	#print " stats ($1) = ($2)\n";
-	$stats{$1} = $2;
+        last if /^(\.|END)/;
+        /^STAT (\S+) (\d+)/;
+        #print " stats ($1) = ($2)\n";
+        $stats{$1} = $2;
     }
 };
 




More information about the memcached-commits mailing list