Skip to content
Snippets Groups Projects
Commit 219b29c4 authored by Julien Malik's avatar Julien Malik
Browse files

OSSIM: patch - support building with -Werror=format-security (necessary for...

OSSIM: patch - support building with -Werror=format-security (necessary for debain/compat version 9)
parent f92ffa98
Branches
Tags
No related merge requests found
......@@ -416,14 +416,14 @@ void displaymessage( char *s, ... )
}
va_end(arglist);
for (i=0;i<nlines;i++) {
fprintf(stderr, text[i]);
fprintf(stderr, "%s", text[i]);
}
free(text);
}
void display_message(char *str)
{
fprintf(stderr, str);
fprintf(stderr, "%s", str);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment