summaryrefslogtreecommitdiff
path: root/gpsd.h-tail
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2015-01-21 12:56:08 -0500
committerEric S. Raymond <esr@thyrsus.com>2015-01-21 12:56:08 -0500
commita61e28529df634963c0967e59aae673f8fc7741e (patch)
tree2c8e5c9ed1ff63870f8a94bd33ecd08a9825caa7 /gpsd.h-tail
parentf351f5981604338db80e2b2864b7dcb818e7fc61 (diff)
downloadgpsd-a61e28529df634963c0967e59aae673f8fc7741e.tar.gz
Easy splint cleanups. All regression tests pass.
Diffstat (limited to 'gpsd.h-tail')
-rw-r--r--gpsd.h-tail4
1 files changed, 2 insertions, 2 deletions
diff --git a/gpsd.h-tail b/gpsd.h-tail
index 25b9e2ec..a361f403 100644
--- a/gpsd.h-tail
+++ b/gpsd.h-tail
@@ -1050,8 +1050,8 @@ void cfmakeraw(struct termios *);
/* Needed because 4.x versions of GCC are really annoying */
#define ignore_return(funcall) \
do { \
- ssize_t result = (funcall); \
- assert(result != -23); \
+ ssize_t locresult = (funcall); \
+ assert(locresult != -23); \
} while (0)
static /*@unused@*/ inline void memory_barrier(void)