aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall/sysinstall.h
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>2001-05-09 08:01:56 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>2001-05-09 08:01:56 +0000
commit047d337348019c781e7499d24e45ffffdb5a1731 (patch)
tree7f4965f1c1e101b37b0ce104eec2af0ddf5bdccf /usr.sbin/sysinstall/sysinstall.h
parentb7c90f028d5f80dace468aa29c5dd3768f021042 (diff)
downloadsrc-047d337348019c781e7499d24e45ffffdb5a1731.tar.gz
src-047d337348019c781e7499d24e45ffffdb5a1731.zip
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
Notes
Notes: svn path=/head/; revision=76402
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 a1ea129efc90..75299deb3c30 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;