ObjFW  Check-in [14dcc4929a]

Overview
Comment:ofarc: Fix double newline in output
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 14dcc4929af72b04c9ffb1eb98eddf751a59ce98b76a419d63dd2c76cf6a2ef7
User & Date: js on 2018-06-23 20:15:00
Other Links: manifest | tags
Context
2018-06-24
19:53
OFSecureData: Add constant-time isEqual: check-in: 68c8c02e80 user: js tags: trunk
2018-06-23
20:15
ofarc: Fix double newline in output check-in: 14dcc4929a user: js tags: trunk
19:09
ofarc: Show more details for LHA archives check-in: 1ace482d39 user: js tags: trunk
Changes

Modified utils/ofarc/ZIPArchive.m from [10b4e5f5e1] to [7e434e2f97].

305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
			}
		}

		if (app->_outputLevel >= 0) {
			[of_stdout writeString: @"\r"];
			[of_stdout writeLine: OF_LOCALIZED(
			    @"extracting_file_done",
			    @"Extracting %[file]... done\n",
			    @"file", fileName)];
		}

outer_loop_end:
		objc_autoreleasePoolPop(pool);
	}








|







305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
			}
		}

		if (app->_outputLevel >= 0) {
			[of_stdout writeString: @"\r"];
			[of_stdout writeLine: OF_LOCALIZED(
			    @"extracting_file_done",
			    @"Extracting %[file]... done",
			    @"file", fileName)];
		}

outer_loop_end:
		objc_autoreleasePoolPop(pool);
	}