comparison src/main.c @ 780:44128da39e13

Drop initialization to NULL since filelist_read() will take care of it.
author zas_
date Tue, 03 Jun 2008 11:24:16 +0000
parents e73d30e0c896
children 2d2cca2bceb0
comparison
equal deleted inserted replaced
779:8b21337bc47b 780:44128da39e13
193 } 193 }
194 194
195 static void parse_command_line_add_dir(const gchar *dir, gchar **path, gchar **file, 195 static void parse_command_line_add_dir(const gchar *dir, gchar **path, gchar **file,
196 GList **list) 196 GList **list)
197 { 197 {
198 GList *files = NULL; 198 GList *files;
199 gchar *path_parsed; 199 gchar *path_parsed;
200 200
201 path_parsed = g_strdup(dir); 201 path_parsed = g_strdup(dir);
202 parse_out_relatives(path_parsed); 202 parse_out_relatives(path_parsed);
203 203