From 55da81c2efbab6bce265ee8d5236f74f508a64c9 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 12 Nov 2010 18:37:27 +0000 Subject: [PATCH] should be bool since we already include eina SVN revision: 54521 --- legacy/ecore/src/lib/ecore/Ecore_Getopt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/ecore/src/lib/ecore/Ecore_Getopt.h b/legacy/ecore/src/lib/ecore/Ecore_Getopt.h index 18a8459bfc..2bb984fe38 100644 --- a/legacy/ecore/src/lib/ecore/Ecore_Getopt.h +++ b/legacy/ecore/src/lib/ecore/Ecore_Getopt.h @@ -161,7 +161,7 @@ extern "C" { const char *copyright; /**< if exists, --copyright will work */ const char *license; /**< if exists, --license will work */ const char *description; /**< long description, possible multiline */ - unsigned char strict : 1; /**< fail on errors */ + Eina_Bool strict : 1; /**< fail on errors */ const Ecore_Getopt_Desc descs[]; /* NULL terminated. */ };