ObjFW  Diff

Differences From Artifact [ca3dadb950]:

To Artifact [de5d10a91b]:


412
413
414
415
416
417
418



419
420
421
422
423
424
425
426
427
428
				app->_exitStatus = 1;
				return;
			}
		}

		[files removeObject: fileName];
		[entry close];



	}

	for (OFString *file in files) {
		[of_stderr writeLine: OF_LOCALIZED(@"file_not_in_archive",
		    @"File %[file] is not in the archive!",
		    @"file", file)];
		app->_exitStatus = 1;
	}
}
@end







>
>
>










412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
				app->_exitStatus = 1;
				return;
			}
		}

		[files removeObject: fileName];
		[entry close];

		if ([files count] == 0)
			break;
	}

	for (OFString *file in files) {
		[of_stderr writeLine: OF_LOCALIZED(@"file_not_in_archive",
		    @"File %[file] is not in the archive!",
		    @"file", file)];
		app->_exitStatus = 1;
	}
}
@end