Make the prototype match the declaration in the GUSI header files.
This commit is contained in:
parent
c5601f4839
commit
e0c62b4db0
|
@ -5,13 +5,13 @@
|
|||
|
||||
#include "macdefs.h"
|
||||
|
||||
int
|
||||
void
|
||||
sync(void)
|
||||
{
|
||||
if (FlushVol((StringPtr)0, 0) == noErr)
|
||||
return 0;
|
||||
return;
|
||||
else {
|
||||
errno= ENODEV;
|
||||
return -1;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue