From dc0222175d99a7b156c6047e6988e8805bb2e14d Mon Sep 17 00:00:00 2001 From: Calvin Date: Sun, 23 Feb 2014 15:41:35 -0500 Subject: update readme and fix warning --- hotkey.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'hotkey.c') diff --git a/hotkey.c b/hotkey.c index 16844af..4deda6b 100644 --- a/hotkey.c +++ b/hotkey.c @@ -127,13 +127,13 @@ struct Key **load_hotkeys(FILE *fh, size_t *key_len) { keys[*key_len] = key; *key_len = *key_len + 1; - realloc(keys, sizeof(struct Key *) * realloc_size); - realloc_size++; - + keys = realloc(keys, sizeof(struct Key *) * realloc_size); if(keys == NULL) { fprintf(stderr, "could not realloc keys\n"); exit(EXIT_FAILURE); } + + realloc_size++; } line_nb++; @@ -141,6 +141,7 @@ struct Key **load_hotkeys(FILE *fh, size_t *key_len) { if(*key_len != 0) return keys; + return NULL; } @@ -165,7 +166,6 @@ void wait_for_input(Display* dpy, Window root, struct Key **hotkeys, size_t len) } } } - } int main(int argc, char **argv) { -- cgit v1.2.3