From: Chip Black Date: Sat, 22 Mar 2014 22:16:12 +0000 (-0500) Subject: Some missing includes and a format error in blergtool X-Git-Tag: v1.9~17 X-Git-Url: http://git.bytex64.net/?a=commitdiff_plain;ds=sidebyside;h=a4fca9b6cbc780b602b86ccc5819dc0ee99d5771;hp=92532488cf742c6501a3a7b258a18017465f5904;p=blerg.git Some missing includes and a format error in blergtool --- diff --git a/tools/blergtool.c b/tools/blergtool.c index 968081a..eee8aef 100644 --- a/tools/blergtool.c +++ b/tools/blergtool.c @@ -3,7 +3,9 @@ */ #include #include +#include #include "database.h" +#include "subscription.h" #include "tags.h" void help() { @@ -79,7 +81,7 @@ int main(int argc, char *argv[]) { } else { int i; for (i = 0; i < count; i++) { - printf("%s %d\n", list[i].author, list[i].record); + printf("%s %llu\n", list[i].author, list[i].record); } free(list); }