summaryrefslogtreecommitdiff
path: root/wsutil
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-05-23 16:44:23 -0700
committerGuy Harris <guy@alum.mit.edu>2014-05-23 23:45:14 +0000
commit95a057aa851ff7922e94eb820a059b6eb8afc747 (patch)
tree9f659598bd9c7c0d100bbde5e5f85a65d1cb94a5 /wsutil
parentd5d0f51909047f0b38a867792232e72cf1553d88 (diff)
downloadwireshark-95a057aa851ff7922e94eb820a059b6eb8afc747.tar.gz
Fix some whitespace issues.
Change-Id: I363361e898c4b37fcde29847a1473530e5052733 Reviewed-on: https://code.wireshark.org/review/1771 Reviewed-by: Guy Harris <guy@alum.mit.edu> (cherry picked from commit f67fc8a4d21d69ede7939874f69c3c5b8a0a4ce4) Reviewed-on: https://code.wireshark.org/review/1772
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/nstime.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/wsutil/nstime.c b/wsutil/nstime.c
index bb4ba5e6f6..439f31a783 100644
--- a/wsutil/nstime.c
+++ b/wsutil/nstime.c
@@ -155,9 +155,9 @@ int nstime_cmp (const nstime_t *a, const nstime_t *b )
return -1; /* and is less than all time stamps */
}
} else {
- if (G_UNLIKELY(nstime_is_unset(b))) {
- return 1;
- }
+ if (G_UNLIKELY(nstime_is_unset(b))) {
+ return 1;
+ }
}
if (a->secs == b->secs) {
return a->nsecs - b->nsecs;