Include the array-size in array externs so that IBM's code-checker
[rsync/rsync.git] / getfsdev.c
index 6ccfceb..3b113bd 100644 (file)
@@ -3,9 +3,15 @@
  int main(int argc, char *argv[])
 {
        STRUCT_STAT st;
+       int ret;
 
        while (--argc > 0) {
-               if (stat(*++argv, &st) < 0) {
+#ifdef USE_STAT64_FUNCS
+               ret = stat64(*++argv, &st);
+#else
+               ret = stat(*++argv, &st);
+#endif
+               if (ret < 0) {
                        fprintf(stderr, "Unable to stat `%s'\n", *argv);
                        exit(1);
                }