summaryrefslogtreecommitdiff
path: root/gpsd_json.c
diff options
context:
space:
mode:
Diffstat (limited to 'gpsd_json.c')
-rw-r--r--gpsd_json.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gpsd_json.c b/gpsd_json.c
index 22fb6f32..86079040 100644
--- a/gpsd_json.c
+++ b/gpsd_json.c
@@ -737,9 +737,8 @@ void json_raw_dump(const struct gps_data_t *gpsdata,
if (gpsdata->dev.path[0] != '\0')
str_appendf(reply, replylen, "\"device\":\"%s\",", gpsdata->dev.path);
- str_appendf(reply, "\"time\":%ld,\"nsec\":%9ld,\"rawdata\":[",
- replylen, (long)gpsdata->raw.mtime.tv_sec,
- gpsdata->raw.mtime.tv_nsec);
+ str_appendf(reply, replylen, "\"time\":%ld,\"nsec\":%9ld,\"rawdata\":[",
+ (long)gpsdata->raw.mtime.tv_sec, gpsdata->raw.mtime.tv_nsec);
for (i = 0; i < MAXCHANNELS; i++) {
bool comma = false;