1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 20:25:14 +03:00

Fix compiler warning in examples

This commit is contained in:
Nick Wellnhofer 2022-09-02 17:59:09 +02:00
parent d0ab5c4fe6
commit 1bd24d448a

View File

@ -136,7 +136,7 @@ int main(int argc, char **argv) {
return(0);
}
#else /* ! LIBXML_PUSH_ENABLED */
int main(int argc, char **argv) {
int main(void) {
fprintf(stderr, "Library not compiled with push parser support\n");
return(0);
}