From: Jonathan Gray Date: Thu, 11 Jul 2013 07:52:00 +0000 (+0200) Subject: st/xvmc/tests: avoid non portable error.h functions X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c451619dde9a510e5a2214f26c16ff28266b3018;p=mesa.git st/xvmc/tests: avoid non portable error.h functions Signed-off-by: Jonathan Gray Reviewed-by: Christian König --- diff --git a/src/gallium/state_trackers/xvmc/tests/xvmc_bench.c b/src/gallium/state_trackers/xvmc/tests/xvmc_bench.c index fe858021936..37360a656b6 100644 --- a/src/gallium/state_trackers/xvmc/tests/xvmc_bench.c +++ b/src/gallium/state_trackers/xvmc/tests/xvmc_bench.c @@ -28,7 +28,7 @@ #include #include #include -#include +#include #include #include "testlib.h" @@ -144,9 +144,9 @@ void ParseArgs(int argc, char **argv, struct Config *config) } if (fail) - error - ( - 1, 0, + { + fprintf( + stderr, "Bad argument.\n" "\n" "Usage: %s [options]\n" @@ -161,6 +161,8 @@ void ParseArgs(int argc, char **argv, struct Config *config) "\tMB types: i,p,b\n", argv[0] ); + exit(1); + } if (config->output_width == 0) config->output_width = config->input_width; @@ -214,7 +216,8 @@ int main(int argc, char **argv) )) { XCloseDisplay(display); - error(1, 0, "Error, unable to find a good port.\n"); + fprintf(stderr, "Error, unable to find a good port.\n"); + exit(1); } if (is_overlay)