X-Git-Url: http://git.cielonegro.org/gitweb.cgi?p=pkgsrc-cinelerra-cv.git;a=blobdiff_plain;f=patches%2Fpatch-util_c;fp=patches%2Fpatch-util_c;h=5616c2c47178d0a568136eb0feb0d53ba922005e;hp=95f4afe8625f32a688027802e6db61d34098ddcd;hb=eb36dc125c0fbb36e7b01e18a64f8b1eed4bd8b2;hpb=7dddc5098a70b61fa8021db2e051d5b4a8403aa1 diff --git a/patches/patch-util_c b/patches/patch-util_c index 95f4afe..5616c2c 100644 --- a/patches/patch-util_c +++ b/patches/patch-util_c @@ -8,3 +8,16 @@ $NetBSD$ #include #include #include +@@ -15,9 +14,9 @@ + + int64_t quicktime_get_file_length(char *path) + { +- struct stat64 status; +- if(stat64(path, &status)) +- perror("quicktime_get_file_length stat64:"); ++ struct stat status; ++ if(stat(path, &status)) ++ perror("quicktime_get_file_length stat:"); + return status.st_size; + } +