summaryrefslogtreecommitdiff
path: root/pkg.h
diff options
context:
space:
mode:
authorDan Nicholson <dbn.lists@gmail.com>2012-12-11 07:10:48 -0800
committerDan Nicholson <dbn.lists@gmail.com>2012-12-11 11:59:40 -0800
commit1b47b03c2a159aa1a70a3ea3949a9acb13ab4256 (patch)
treee5b7b1e0dc3512c3826b38639b97a56f61aba174 /pkg.h
parent30e7f3131875b71dcd056d82bbade2e8f00d1e70 (diff)
downloadpkg-config-1b47b03c2a159aa1a70a3ea3949a9acb13ab4256.tar.gz
Convert ints used as bools to gbooleans
This matches the GOption documentation that G_OPTION_ARG_NONE should use a gboolean.
Diffstat (limited to 'pkg.h')
-rw-r--r--pkg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg.h b/pkg.h
index a28c406..e12aab2 100644
--- a/pkg.h
+++ b/pkg.h
@@ -131,12 +131,12 @@ extern char *pkg_config_pc_path;
#ifdef G_OS_WIN32
/* If TRUE, do not automatically define "prefix" while
* parsing each .pc file */
-extern int dont_define_prefix;
+extern gboolean dont_define_prefix;
/* The name of the variable that acts as prefix, unless it is "prefix" */
extern char *prefix_variable;
/* If TRUE, output flags in MSVC syntax. */
-extern int msvc_syntax;
+extern gboolean msvc_syntax;
#endif
#endif