Silence some Mac OS X warnings.

This commit is contained in:
rsc 2003-11-25 02:36:46 +00:00
parent 6bb54fab15
commit 3765283ccf
5 changed files with 6 additions and 3 deletions

View file

@ -10,7 +10,7 @@ dirwstat(char *file, Dir *dir)
struct utimbuf ub;
/* BUG handle more */
if(dir->mtime == ~0ULL)
if(~dir->mtime == 0)
return 0;
ub.actime = dir->mtime;

View file

@ -7,7 +7,6 @@ extern int __isthreaded;
int
ffork(int flags, void(*fn)(void*), void *arg)
{
void *p;
pthread_t tid;
if(flags != (RFMEM|RFNOWAIT)){