summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2014-01-02 11:49:34 -0800
committerGary E. Miller <gem@rellim.com>2014-01-02 11:49:34 -0800
commitd6f8a5094f9539afdf1c6a20507d03678a08b1ba (patch)
tree9259e8b10993ac5337a049e0bc0fe5eba3fd13d6
parent030e438dae21a1f803c5566ec312a9261895cf05 (diff)
downloadgpsd-d6f8a5094f9539afdf1c6a20507d03678a08b1ba.tar.gz
ppsthread.c: delete more stray commas
From: Beat Bolli <bbolli@ewanet.ch>
-rw-r--r--ppsthread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ppsthread.c b/ppsthread.c
index 9e8e85ef..03170464 100644
--- a/ppsthread.c
+++ b/ppsthread.c
@@ -338,7 +338,7 @@ static /*@null@*/ void *gpsd_ppsmonitor(void *arg)
edge = (state > state_last) ? 1 : 0;
#endif /* TIOCMIWAIT */
- /* ok and log used by KPPS and TIOCMIWAIT, */
+ /* ok and log used by KPPS and TIOCMIWAIT */
ok = false;
log = NULL;
#if defined(HAVE_SYS_TIMEPPS_H) && !defined(S_SPLINT_S)
@@ -353,12 +353,12 @@ static /*@null@*/ void *gpsd_ppsmonitor(void *arg)
* We use of a non-NULL zero timespec here,
* which means to return immediately with -1 (section
* 3.4.3). This is because we know we just got a pulse because
- * TIOCMIWAIT, just woke up.
+ * TIOCMIWAIT just woke up.
* The timestamp has already been captured in the kernel, and we
* are merely fetching it here.
*/
memset( (void *)&kernelpps_tv, 0, sizeof(kernelpps_tv));
-#else /* not TIOCMIWAIT, */
+#else /* not TIOCMIWAIT */
/*
* RFC2783 specifies that a NULL timeval means to wait.
*