Commit fc524ddb authored by Thomas Klausner's avatar Thomas Klausner Committed by Ulrich Sibiller

Do not return() after exit().

parent 1445735e
......@@ -3496,7 +3496,7 @@ int _XDefaultIOError(
#else
exit(1);
#endif /* #ifdef NX_TRANS_SOCKET */
return(0); /* dummy - function should never return */
/*NOTREACHED*/
}
......@@ -3746,7 +3746,7 @@ _XIOError (
#else
exit (1);
#endif
return 0;
/*NOTREACHED*/
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment