don't return 0 when we do pk_error, or the make check passes when we error out

This commit is contained in:
Richard Hughes 2007-11-08 21:14:20 +00:00
parent 740efd3edd
commit ab4330c911

View File

@ -126,7 +126,7 @@ pk_error_real (const gchar *func,
fprintf (stderr, "*** ERROR ***\n");
pk_print_line (func, file, line, buffer);
g_free(buffer);
exit (0);
exit (1);
}
/**