diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2010-04-18 12:51:14 -0700 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2010-04-18 13:46:08 -0700 |
commit | ff1c7e45597d2d9a5c096dc1617ce84be14a02c6 (patch) | |
tree | e5d22cae0293b05b604c6e0514cba16e3f9d0bc2 /src/tet3/xtilib/listn.c | |
parent | ca4d3f8f0be2300b6d370a2c141bc266d266405e (diff) |
tet: Fix "srcFile defined but not used" warnings.
These global arrays are used by the error-reporting macros to define the source
file. I guess it's because using __FILE__ everywhere generated tons of copies
of the file path in .data on ancient compilers. Nowadays, they end up with only
one copy in .rodata. To facilitate that, make the arguments to the error
reporting functions const. Propagate constness to eliminate additional
warnings.
Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'src/tet3/xtilib/listn.c')
-rw-r--r-- | src/tet3/xtilib/listn.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/tet3/xtilib/listn.c b/src/tet3/xtilib/listn.c index 2477d59b..1abbad85 100644 --- a/src/tet3/xtilib/listn.c +++ b/src/tet3/xtilib/listn.c @@ -47,10 +47,6 @@ MODIFICATIONS: #include "ltoa.h" #include "xtilib_xt.h" -#ifdef NEEDsrcFile -static char srcFile[] = __FILE__; /* file name for error reporting */ -#endif - /* ** tet_ts_listen() - clear the connection indication array prior to |