aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl.c
diff options
context:
space:
mode:
authorGravatar Barrucadu <mike@barrucadu.co.uk>2009-04-26 21:59:05 +0100
committerGravatar Barrucadu <mike@barrucadu.co.uk>2009-04-26 21:59:05 +0100
commitca3965d7ffba1a809e5447f30a3c7acfafc9a945 (patch)
tree2ce032783307f630906977ade64ff72f3f7047e6 /uzbl.c
parent7f1b7eb459e8c3a8607eaf3eb0dad864455e6544 (diff)
Fixed some warnings.
Diffstat (limited to 'uzbl.c')
-rw-r--r--uzbl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/uzbl.c b/uzbl.c
index abd0566..cbd6ec7 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -422,13 +422,13 @@ add_binding (char *binding, char *action, bool internal) {
static void
settings_init () {
GKeyFile* config;
- gboolean res = NULL;
+ gboolean res = FALSE;
gchar** keysi = NULL;
gchar** keyse = NULL;
if (! config_file) {
const char* xdg = getenv ("XDG_CONFIG_HOME");
- char* conf[256];
+ char conf[256];
if (xdg) {
printf("XDG_CONFIG_DIR: %s\n", xdg);
strcpy (conf, xdg);