lp:794709
[awesomized/libmemcached] / libmemcached / dump.cc
index 18c159748bdd1e70d24e5fd78f6fd4ac285cdc3f..d5aa292ae62104542e3abb1406581289b321d8e2 100644 (file)
@@ -51,7 +51,7 @@ static memcached_return_t ascii_dump(memcached_st *ptr, memcached_dump_fn *callb
 
           string_ptr= buffer;
           string_ptr+= 5; /* Move past ITEM */
-          for (end_ptr= string_ptr; isgraph(*end_ptr); end_ptr++);
+          for (end_ptr= string_ptr; isgraph(*end_ptr); end_ptr++) {} ;
           key= string_ptr;
           key[(size_t)(end_ptr-string_ptr)]= 0;
           for (callback_counter= 0; callback_counter < number_of_callbacks; callback_counter++)