fix this warning i got with last pull info.c: In function 'print_flag': info.c:19: warning: format not a string literal and no format arguments --- info.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/info.c b/info.c index 9b04719..a9c23a4 100644 --- a/info.c +++ b/info.c @@ -16,7 +16,7 @@ static void print_flag(const char *name, int *open) printf(" ("); else printf(", "); - printf(name); + printf("%s\n",name); *open = 1; } -- 1.6.0.4.766.g6fc4a -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html