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/inetlib/poll.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/inetlib/poll.c')
-rw-r--r-- | src/tet3/inetlib/poll.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/tet3/inetlib/poll.c b/src/tet3/inetlib/poll.c index 8614a7ed..cc1a881d 100644 --- a/src/tet3/inetlib/poll.c +++ b/src/tet3/inetlib/poll.c @@ -63,10 +63,6 @@ MODIFICATIONS: #include "ltoa.h" #endif -#ifdef NEEDsrcFile -static char srcFile[] = __FILE__; /* file name for error reporting */ -#endif - /* ** compatability for systems with pre-BSD4.3 select() call - |