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:
parent
b7c90f028d
commit
047d337348
@ -190,7 +190,7 @@
|
|||||||
#define SAFE_STRCPY(to, from) sstrncpy((to), (from), sizeof (to) - 1)
|
#define SAFE_STRCPY(to, from) sstrncpy((to), (from), sizeof (to) - 1)
|
||||||
|
|
||||||
/*** Types ***/
|
/*** Types ***/
|
||||||
typedef unsigned int Boolean;
|
typedef int Boolean;
|
||||||
typedef struct disk Disk;
|
typedef struct disk Disk;
|
||||||
typedef struct chunk Chunk;
|
typedef struct chunk Chunk;
|
||||||
|
|
||||||
|
@ -190,7 +190,7 @@
|
|||||||
#define SAFE_STRCPY(to, from) sstrncpy((to), (from), sizeof (to) - 1)
|
#define SAFE_STRCPY(to, from) sstrncpy((to), (from), sizeof (to) - 1)
|
||||||
|
|
||||||
/*** Types ***/
|
/*** Types ***/
|
||||||
typedef unsigned int Boolean;
|
typedef int Boolean;
|
||||||
typedef struct disk Disk;
|
typedef struct disk Disk;
|
||||||
typedef struct chunk Chunk;
|
typedef struct chunk Chunk;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user