summaryrefslogtreecommitdiff
path: root/libgps_core.c
diff options
context:
space:
mode:
authorZbigniew Chyla <zbigniew.chyla@nsn.com>2015-01-16 15:46:59 +0100
committerEric S. Raymond <esr@thyrsus.com>2015-01-21 10:47:26 -0500
commit4abdcf1ac9a891a5010f238214150adbc2073b38 (patch)
treeccd55b9a74504246569a0d84d7853370541cad34 /libgps_core.c
parentb500289f7af867ee5d5c236247f8f8a2a48ad342 (diff)
downloadgpsd-4abdcf1ac9a891a5010f238214150adbc2073b38.tar.gz
Add str_{,v}appendf, use it everywhere.
This change doesn't affect generated binary code.
Diffstat (limited to 'libgps_core.c')
-rw-r--r--libgps_core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgps_core.c b/libgps_core.c
index 64bce379..b16902c1 100644
--- a/libgps_core.c
+++ b/libgps_core.c
@@ -17,6 +17,7 @@
#include "gpsd.h"
#include "libgps.h"
#include "gps_json.h"
+#include "strfuncs.h"
#ifdef LIBGPS_DEBUG
int libgps_debuglevel = 0;
@@ -42,8 +43,7 @@ void libgps_trace(int errlevel, const char *fmt, ...)
(void)strlcpy(buf, "libgps: ", sizeof(buf));
va_start(ap, fmt);
- (void)vsnprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), fmt,
- ap);
+ str_vappendf(buf, sizeof(buf), fmt, ap);
va_end(ap);
(void)fputs(buf, debugfp);