ObjFW  Check-in [a4af1a1447]

Overview
Comment:OFZIP: Small change to make GCC happy
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a4af1a1447a90e93da8a87cfe80bbc2c3027e2e0598da29683bc129e47587c48
User & Date: js on 2016-04-24 11:13:33
Other Links: manifest | tags
Context
2016-04-24
11:39
Makefile: Revert back to packaging as .tar.gz check-in: 211234ea70 user: js tags: trunk
11:13
OFZIP: Small change to make GCC happy check-in: a4af1a1447 user: js tags: trunk
02:32
OFZIP: Add GZIP support check-in: 34e0dcaf87 user: js tags: trunk
Changes

Modified utils/ofzip/OFZIP.m from [ca3f3e8461] to [f3bbb8f809].

193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
	}

	[OFApplication terminateWithStatus: _exitStatus];
}

- (id <Archive>)openArchiveWithPath: (OFString*)path
{
	OFFile *file;
	id <Archive> archive;

	[_archivePath release];
	_archivePath = [path copy];

	@try {
		file = [OFFile fileWithPath: path
				       mode: @"rb"];







|
|







193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
	}

	[OFApplication terminateWithStatus: _exitStatus];
}

- (id <Archive>)openArchiveWithPath: (OFString*)path
{
	OFFile *file = nil;
	id <Archive> archive = nil;

	[_archivePath release];
	_archivePath = [path copy];

	@try {
		file = [OFFile fileWithPath: path
				       mode: @"rb"];