cleanups; undefine macros after their use, set some UNUSED attributes
authorEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Sat, 29 Oct 2005 09:25:42 +0000 (09:25 +0000)
committerEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Sat, 29 Oct 2005 09:25:42 +0000 (09:25 +0000)
and 'return EXIT_SUCCESS' in main to make the testsuite happy (where
main() is not main())

git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@2205 94cd875c-1c1d-0410-91d2-eb244daf1a30

util-vserver/src/vhashify.c

index 6b0bf1a..5e37887 100644 (file)
@@ -292,11 +292,15 @@ addStatHash(hashFunctionContext *h_ctx, struct stat const * const st)
     SET_ATTR(mtime)
   };
 
+#undef SET_ATTR
+#undef DECL_ATTR
+
+  
   return hashFunctionContextUpdate(h_ctx, (void *)&tmp, sizeof tmp)!=-1;
 }
 #else
 static bool
-addStatHash(hashFunctionContext *h_ctx, struct stat const * const st)
+addStatHash(hashFunctionContext UNUSED *h_ctx, struct stat const UNUSED * const st)
 {
   return true;
 }
@@ -748,4 +752,6 @@ int main(int argc, char *argv[])
   freeHashList(&global_info.hash_dirs);
   hashFunctionContextFree(&global_info.hash_context);
 #endif
+
+  return EXIT_SUCCESS;
 }