diff options
Diffstat (limited to 'src/utils.c')
-rw-r--r-- | src/utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils.c b/src/utils.c index 031162e..7e33c8f 100644 --- a/src/utils.c +++ b/src/utils.c @@ -53,7 +53,7 @@ static int outCount = 0; static char *preMsg = NULL; static char *prefix = NULL; -Bool +bool uSetErrorFile(char *name) { if ((errorFile != NULL) && (errorFile != stderr)) @@ -68,9 +68,9 @@ uSetErrorFile(char *name) if (errorFile == NULL) { errorFile = stderr; - return (False); + return false; } - return (True); + return true; } void |