diff options
author | Jonathan Gray <jsg@jsg.id.au> | 2013-07-11 09:52:00 +0200 |
---|---|---|
committer | Christian König <christian.koenig@amd.com> | 2013-07-11 09:52:00 +0200 |
commit | c451619dde9a510e5a2214f26c16ff28266b3018 (patch) | |
tree | cf926945cebe531c1ad7d6f625f89d4f8e0fb038 | |
parent | 9a1a67b081b7f7f4030a5bff7af12bbb70a970ef (diff) |
st/xvmc/tests: avoid non portable error.h functions
Signed-off-by: Jonathan Gray <jsg@jsg.id.au>
Reviewed-by: Christian König <christian.koenig@amd.com>
-rw-r--r-- | src/gallium/state_trackers/xvmc/tests/xvmc_bench.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/gallium/state_trackers/xvmc/tests/xvmc_bench.c b/src/gallium/state_trackers/xvmc/tests/xvmc_bench.c index fe85802193..37360a656b 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 <assert.h> #include <stdio.h> #include <string.h> -#include <error.h> +#include <stdlib.h> #include <sys/time.h> #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) |