From f3b3904cc154d602ced5b24887c57f9bbf05637f Mon Sep 17 00:00:00 2001 From: Stathis Kamperis Date: Sat, 9 Feb 2008 18:27:11 +0200 Subject: [PATCH] TRUE/FALSE -> true/false --- proplib/prop_dict.c | 4 ++-- proplib/prop_write_array.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/proplib/prop_dict.c b/proplib/prop_dict.c index c321852..d93b142 100644 --- a/proplib/prop_dict.c +++ b/proplib/prop_dict.c @@ -30,7 +30,7 @@ int main(int argc, char *argv[]) err(EXIT_FAILURE, "prop_string_create_cstring_nocopy()"); } - if (prop_dictionary_set(pd, argv[i], ps) == FALSE) { + if (prop_dictionary_set(pd, argv[i], ps) == false) { prop_object_release(ps); prop_object_release(pd); err(EXIT_FAILURE, "prop_dictionary_set()"); @@ -40,7 +40,7 @@ int main(int argc, char *argv[]) } /* Output our property list as an XML file */ - if (prop_dictionary_externalize_to_file(pd, "./data.xml") == FALSE) { + if (prop_dictionary_externalize_to_file(pd, "./data.xml") == false) { prop_object_release(pd); err(EXIT_FAILURE, "prop_dictionary_externalize_to_file()"); } diff --git a/proplib/prop_write_array.c b/proplib/prop_write_array.c index e1136a2..c8f1e41 100644 --- a/proplib/prop_write_array.c +++ b/proplib/prop_write_array.c @@ -45,7 +45,7 @@ main(int argc, char *argv[]) err(EXIT_FAILURE, "prop_string_create_cstring_nocopy()"); } - if (prop_array_add(pa, ps) == FALSE) { + if (prop_array_add(pa, ps) == false) { prop_object_release(pa); prop_object_release(ps); err(EXIT_FAILURE, "prop_array_add()"); @@ -55,7 +55,7 @@ main(int argc, char *argv[]) } /* Export array contents to file as XML */ - if (prop_array_externalize_to_file(pa, "./data.xml") == FALSE) { + if (prop_array_externalize_to_file(pa, "./data.xml") == false) { prop_object_release(pa); err(EXIT_FAILURE, "prop_array_externalize_to_file()"); } -- 2.11.4.GIT