diff options
Diffstat (limited to 'src/export/split_version_3.c')
-rw-r--r-- | src/export/split_version_3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/export/split_version_3.c b/src/export/split_version_3.c index 2019762..853d95d 100644 --- a/src/export/split_version_3.c +++ b/src/export/split_version_3.c | |||
@@ -49,7 +49,7 @@ int main( int argc, char **args ) { | |||
49 | off = p[file+1]; | 49 | off = p[file+1]; |
50 | /* Look for end of this chunk, which is <count> strings long */ | 50 | /* Look for end of this chunk, which is <count> strings long */ |
51 | for( strnr=0; strnr < count; ++strnr ) { while( f[off++] ) {}; f[off-1] = '\n'; } | 51 | for( strnr=0; strnr < count; ++strnr ) { while( f[off++] ) {}; f[off-1] = '\n'; } |
52 | write( outfiles[file], f + p[file+1], off - p[file+1] ); | 52 | (void)write( outfiles[file], f + p[file+1], off - p[file+1] ); |
53 | } | 53 | } |
54 | } | 54 | } |
55 | 55 | ||