summaryrefslogtreecommitdiff
path: root/driver_aivdm.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2010-05-05 05:20:45 -0400
committerEric S. Raymond <esr@thyrsus.com>2010-05-05 05:20:45 -0400
commit2081752d42cbbef85494f8e86337031c7b227795 (patch)
treedd3f151696a5bcd3992c054e578b53b0cdb0573c /driver_aivdm.c
parentf574ec49f88869541f7b9e265ec7abd5e6aaec1e (diff)
downloadgpsd-2081752d42cbbef85494f8e86337031c7b227795.tar.gz
Stop trying to special-case terminating whitespace in gpsd_report().
Diffstat (limited to 'driver_aivdm.c')
-rw-r--r--driver_aivdm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver_aivdm.c b/driver_aivdm.c
index 97a289f5..97a669b4 100644
--- a/driver_aivdm.c
+++ b/driver_aivdm.c
@@ -90,7 +90,7 @@ bool aivdm_decode(const char *buf, size_t buflen,
return false;
/* we may need to dump the raw packet */
- gpsd_report(LOG_PROG, "AIVDM packet length %zd: %s", buflen, buf);
+ gpsd_report(LOG_PROG, "AIVDM packet length %zd: %s\n", buflen, buf);
/* extract packet fields */
(void)strlcpy((char *)ais_context->fieldcopy, buf, buflen);