aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2016-11-02 21:03:44 -0400
committerMichael Mann <mmann78@netscape.net>2016-11-03 02:30:50 +0000
commit79b4a05bef50d8413bc6422372ee8b341156c26c (patch)
treefed37dd5e8187ae082ccac9329c2b0e8e0ea1b41 /ui
parent1f6c338c487897fab16e95ff5a84fa416c631c37 (diff)
Fix lintian found spelling error "splitted" -> "split"
Change-Id: I4b00ef460ae1792cd6f14856493f7a58ab8e0b9a Reviewed-on: https://code.wireshark.org/review/18645 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'ui')
-rw-r--r--ui/export_object_smb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/export_object_smb.c b/ui/export_object_smb.c
index ca22f8bef3..4ccd1c07f2 100644
--- a/ui/export_object_smb.c
+++ b/ui/export_object_smb.c
@@ -172,7 +172,7 @@ insert_chunk(active_file *file, export_object_entry_t *entry, const smb_eo_t *
continue;
}
/* 4. data chunk is inside the free chunk */
- /* -> free chunk is splitted into two */
+ /* -> free chunk is split into two */
if (chunk_offset>current_free_chunk->start_offset && chunk_end_offset<current_free_chunk->end_offset) {
new_free_chunk = (free_chunk *)g_malloc(sizeof(free_chunk));
new_free_chunk->start_offset = chunk_end_offset + 1;