diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2010-04-13 21:33:07 -0400 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2010-04-13 21:33:07 -0400 |
commit | e6d631497ee1326ddf7eabae1bd8be0dfab68527 (patch) | |
tree | 477a902fb439c18ec0f5797208bee4ca390687c4 /driver_italk.c | |
parent | a9975f1b860f1f2df3dab83e42a62e198f102162 (diff) | |
download | gpsd-e6d631497ee1326ddf7eabae1bd8be0dfab68527.tar.gz |
Cosmetic glitches found while testing reindenting.
Diffstat (limited to 'driver_italk.c')
-rw-r--r-- | driver_italk.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/driver_italk.c b/driver_italk.c index be3d3c61..430b0829 100644 --- a/driver_italk.c +++ b/driver_italk.c @@ -373,16 +373,16 @@ static ssize_t italk_control_send(struct gps_device_t *session, { ssize_t status; - /*@ -mayaliasunique **/ + /*@ -mayaliasunique @*/ session->msgbuflen = msglen; (void)memcpy(session->msgbuf, msg, msglen); - /*@ +mayaliasunique **/ + /*@ +mayaliasunique @*/ /* we may need to dump the message */ gpsd_report(LOG_IO, "writing italk control type %02x:%s\n", msg[0], gpsd_hexdump_wrapper(msg, msglen, LOG_IO)); status = write(session->gpsdata.gps_fd, msg, msglen); (void)tcdrain(session->gpsdata.gps_fd); - return(status); + return status; } /*@ -charint +usedef +compdef @*/ #endif /* ALLOW_CONTROLSEND */ |