diff options
author | Daniel Friesel <derf@finalrewind.org> | 2012-08-12 19:21:07 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2012-08-12 19:21:07 +0200 |
commit | 503048c639e1017324e64313c7eb197b20201b40 (patch) | |
tree | b4b0e0133de2b0bed76fb5b54ddb43ec63e6f6ac /src/list.c | |
parent | a62c48c7bd46c4e193738c7d391c529c528ee4dc (diff) |
Add %o, %r and %z format specifiers (see #95)
Diffstat (limited to 'src/list.c')
-rw-r--r-- | src/list.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ void init_list_mode(void) for (l = filelist; l; l = l->next) { file = FEH_FILE(l->data); if (opt.customlist) - printf("%s\n", feh_printf(opt.customlist, file)); + printf("%s\n", feh_printf(opt.customlist, file, NULL)); else { printf("%d\t%s\t%d\t%d\t%s", ++j, file->info->format, file->info->width, |