summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-03-02 11:36:44 +0000
committerGuy Harris <guy@alum.mit.edu>2012-03-02 11:36:44 +0000
commitb77a0b38279b68593c74b603db469992a04e624a (patch)
treec90d2b9e256c575a38164ce42d10fb86b1bd6c6b
parent6b3c0cd4f831ecf6d65db6596bc755c052277b1a (diff)
downloadwireshark-b77a0b38279b68593c74b603db469992a04e624a.tar.gz
Fix indentation.
svn path=/trunk/; revision=41320
-rw-r--r--file.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/file.c b/file.c
index c6d06a6eae..f799a2596d 100644
--- a/file.c
+++ b/file.c
@@ -3925,17 +3925,17 @@ cf_save(capture_file *cf, const char *fname, packet_range_t *range, guint save_f
case CF_READ_OK:
case CF_READ_ERROR:
- /* Just because we got an error, that doesn't mean we were unable
- to read any of the file; we handle what we could get from the
- file. */
- break;
+ /* Just because we got an error, that doesn't mean we were unable
+ to read any of the file; we handle what we could get from the
+ file. */
+ break;
case CF_READ_ABORTED:
- /* The user bailed out of re-reading the capture file; the
- capture file has been closed - just return (without
- changing any menu settings; "cf_close()" set them
- correctly for the "no capture file open" state). */
- break;
+ /* The user bailed out of re-reading the capture file; the
+ capture file has been closed - just return (without
+ changing any menu settings; "cf_close()" set them
+ correctly for the "no capture file open" state). */
+ break;
}
cf_callback_invoke(cf_cb_file_save_reload_finished, cf);
}