ObjFW  Diff

Differences From Artifact [50bf2d19a1]:

To Artifact [760ffd8cfa]:


157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178





179
180
181
182

183

184
185
186
187
188
189
190
				    @"Group: %[group]",
				    @"group", [entry group])];
			}

			if (app->_outputLevel >= 2) {
				OFString *level = [OFString stringWithFormat:
				    @"%" PRIu8, [entry level]];
				OFString *OSID = [OFString stringWithFormat:
				    @"%c", [entry operatingSystemIdentifier]];

				[of_stdout writeString: @"\t"];
				[of_stdout writeLine: OF_LOCALIZED(
				    @"list_level",
				    @"Level: %[level]",
				    @"level", level)];

				[of_stdout writeString: @"\t"];
				[of_stdout writeLine: OF_LOCALIZED(
				    @"list_method",
				    @"Method: %[method]",
				    @"method", [entry method])];






				[of_stdout writeString: @"\t"];
				[of_stdout writeLine: OF_LOCALIZED(
				    @"list_osid",
				    @"Operating system identifier: %[osid]",

				    @"osid", OSID)];

			}
		}

		objc_autoreleasePoolPop(pool);
	}
}








<
<













>
>
>
>
>
|
|
|
|
>
|
>







157
158
159
160
161
162
163


164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
				    @"Group: %[group]",
				    @"group", [entry group])];
			}

			if (app->_outputLevel >= 2) {
				OFString *level = [OFString stringWithFormat:
				    @"%" PRIu8, [entry level]];



				[of_stdout writeString: @"\t"];
				[of_stdout writeLine: OF_LOCALIZED(
				    @"list_level",
				    @"Level: %[level]",
				    @"level", level)];

				[of_stdout writeString: @"\t"];
				[of_stdout writeLine: OF_LOCALIZED(
				    @"list_method",
				    @"Method: %[method]",
				    @"method", [entry method])];

				if ([entry operatingSystemIdentifier] != '\0') {
					OFString *OSID =
					    [OFString stringWithFormat: @"%c",
					    [entry operatingSystemIdentifier]];

					[of_stdout writeString: @"\t"];
					[of_stdout writeLine: OF_LOCALIZED(
					    @"list_osid",
					    @"Operating system identifier: "
					    "%[osid]",
					    @"osid", OSID)];
				}
			}
		}

		objc_autoreleasePoolPop(pool);
	}
}