summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/sysinstall.h
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>2001-05-09 08:01:56 +0000
committerjkh <jkh@FreeBSD.org>2001-05-09 08:01:56 +0000
commitc7eb1fc5f3f172b14f2b05a8634fd9628139917f (patch)
treee54f72a8eb55aade68f05fd59de597b2a733444d /usr.sbin/sysinstall/sysinstall.h
parent8b207d03b65418a080247bd71f8f9660a354ace2 (diff)
downloadFreeBSD-src-c7eb1fc5f3f172b14f2b05a8634fd9628139917f.zip
FreeBSD-src-c7eb1fc5f3f172b14f2b05a8634fd9628139917f.tar.gz
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
Diffstat (limited to 'usr.sbin/sysinstall/sysinstall.h')
-rw-r--r--usr.sbin/sysinstall/sysinstall.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/sysinstall.h b/usr.sbin/sysinstall/sysinstall.h
index a1ea129..75299de 100644
--- a/usr.sbin/sysinstall/sysinstall.h
+++ b/usr.sbin/sysinstall/sysinstall.h
@@ -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;
OpenPOWER on IntegriCloud