summaryrefslogtreecommitdiff
path: root/libgps_core.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2011-03-21 18:12:20 -0400
committerEric S. Raymond <esr@thyrsus.com>2011-03-21 18:12:20 -0400
commit735d0c815316dd9524fefca9a709ac395200eb95 (patch)
tree10cfba03938376e24fca3539235e0fa6fcb2bbc4 /libgps_core.c
parenta450c42bebc8dd0cedd51d983654e049238850c9 (diff)
downloadgpsd-735d0c815316dd9524fefca9a709ac395200eb95.tar.gz
Banish compiler warnings in the Qt support.
All regression tests pass.
Diffstat (limited to 'libgps_core.c')
-rw-r--r--libgps_core.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/libgps_core.c b/libgps_core.c
index f28e74b2..6618b519 100644
--- a/libgps_core.c
+++ b/libgps_core.c
@@ -55,10 +55,10 @@ struct privdata_t
#define DEBUG_CALLS 1 /* shallowest debug level */
#define DEBUG_JSON 5 /* minimum level for verbose JSON debugging */
static int debuglevel = 0;
+static FILE *debugfp;
#ifndef USE_QT
static int waitcount = 0;
-#endif
-static FILE *debugfp;
+#endif /* USE_QT */
void gps_enable_debug(int level, FILE * fp)
/* control the level and destination of debug trace messages */
@@ -718,7 +718,9 @@ extern const char /*@observer@*/ *gps_errstr(const int err)
#ifndef USE_QT
return netlib_errstr(err);
#else
- return "";
+ char buf[32];
+ (void)snprintf(buf, sizeof(buf), "Qt error %d", err);
+ return buf;
#endif
}