Kaydet (Commit) e0c62b4d authored tarafından Jack Jansen's avatar Jack Jansen

Make the prototype match the declaration in the GUSI header files.

üst c5601f48
...@@ -5,13 +5,13 @@ ...@@ -5,13 +5,13 @@
#include "macdefs.h" #include "macdefs.h"
int void
sync(void) sync(void)
{ {
if (FlushVol((StringPtr)0, 0) == noErr) if (FlushVol((StringPtr)0, 0) == noErr)
return 0; return;
else { else {
errno= ENODEV; errno= ENODEV;
return -1; return;
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment