Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove warnings.
[simgrid.git] / teshsuite / smpi / macro-shared / macro-shared.c
index a9f1e56..d1d9966 100644 (file)
@@ -15,12 +15,12 @@ static void* hash(char *str, uint64_t* ans)
 {
   char *tohash = str;
   *ans=5381;
-  int c;
   printf("hashing !\n");
-  c = *tohash++;
-  while (c!=0){
+  int c = *tohash;
+  while (c != 0) {
     *ans = ((*ans << 5) + *ans) + c; /* hash * 33 + c */
-    c = *tohash++;
+    tohash++;
+    c = *tohash;
   }
   return NULL;
 }