Trivial warning fix in GTK GUI

svn path=/trunk/netsurf/; revision=2665
This commit is contained in:
Rob Kendrick 2006-06-28 22:29:45 +00:00
parent cea180d752
commit 5378cd3330

View File

@ -271,7 +271,7 @@ void warn_user(const char *warning, const char *detail)
void die(const char * const error)
{
fprintf(stderr, error);
fprintf(stderr, "%s", error);
exit(EXIT_FAILURE);
}