summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'string.c')
-rw-r--r--string.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/string.c b/string.c
index 3f69903..e182948 100644
--- a/string.c
+++ b/string.c
@@ -25,9 +25,9 @@
*/
#include <sys/types.h>
+#include <stdbool.h>
#include <stdlib.h>
-#include "boolean.h"
#include "error.h"
#include "mig_string.h"
@@ -61,9 +61,9 @@ strfree(string_t string)
}
const char *
-strbool(boolean_t bool)
+strbool(bool v)
{
- if (bool)
+ if (v)
return "TRUE";
else
return "FALSE";