summaryrefslogtreecommitdiff
path: root/src/pacman/conf.c
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2014-12-14 12:35:00 -0500
committerAllan McRae <allan@archlinux.org>2014-12-18 16:34:03 +1000
commit16259d728e87c10533cd24f88aa7127fff48db2b (patch)
tree75d2c77b5081235445f47cb50d3b32693c523e5a /src/pacman/conf.c
parent0cd174efd5065dca26fcce180d853fe6323d3e12 (diff)
downloadpacman-16259d728e87c10533cd24f88aa7127fff48db2b.tar.xz
shut up GCC on -Wmaybe-initialized warnings
Admittedly, these are totally bogus, but a clean build is a happy build. Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src/pacman/conf.c')
-rw-r--r--src/pacman/conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/conf.c b/src/pacman/conf.c
index 5028284d..873ca0ee 100644
--- a/src/pacman/conf.c
+++ b/src/pacman/conf.c
@@ -459,7 +459,7 @@ static int process_cleanmethods(alpm_list_t *values,
static void setrepeatingoption(char *ptr, const char *option,
alpm_list_t **list)
{
- char *val, *saveptr;
+ char *val, *saveptr = NULL;
val = strtok_r(ptr, " ", &saveptr);
while(val) {