Fix what was clearly a 3am brain-o; Boolean should be signed, not

unsigned.  C is kinda loose about this sort of thing but it's no excuse.

Spotted by:	kenny
This commit is contained in:
Jordan K. Hubbard 2001-05-09 08:01:56 +00:00
parent b7c90f028d
commit 047d337348
2 changed files with 2 additions and 2 deletions

View File

@ -190,7 +190,7 @@
#define SAFE_STRCPY(to, from) sstrncpy((to), (from), sizeof (to) - 1)
/*** Types ***/
typedef unsigned int Boolean;
typedef int Boolean;
typedef struct disk Disk;
typedef struct chunk Chunk;

View File

@ -190,7 +190,7 @@
#define SAFE_STRCPY(to, from) sstrncpy((to), (from), sizeof (to) - 1)
/*** Types ***/
typedef unsigned int Boolean;
typedef int Boolean;
typedef struct disk Disk;
typedef struct chunk Chunk;