ObjFW  Diff

Differences From Artifact [1e3eba5867]:

To Artifact [2e133e3806]:


193
194
195
196
197
198
199
200
201


202



203
204

205
206
207
208
209
210
211
212
213


214



215
216

217
218
219
220
221
222
223
224
225


226



227
228

229
230
231
232
233
234
235
193
194
195
196
197
198
199


200
201
202
203
204
205
206

207
208
209
210
211
212
213
214


215
216
217
218
219
220
221

222
223
224
225
226
227
228
229


230
231
232
233
234
235
236

237
238
239
240
241
242
243
244







-
-
+
+

+
+
+

-
+







-
-
+
+

+
+
+

-
+







-
-
+
+

+
+
+

-
+







				return false;

			ctx->length_modifier = LENGTH_MODIFIER_L;
		}

		break;
	case 'j':
#ifndef _WIN32
		if (!append_subformat(ctx, ctx->format + ctx->i, 1))
#if defined(_WIN32)
		if (!append_subformat(ctx, "I64", 3))
			return false;
#elif defined(__wii__)
		if (!append_subformat(ctx, "ll", 2))
			return false;
#else
		if (!append_subformat(ctx, "I64", 3))
		if (!append_subformat(ctx, ctx->format + ctx->i, 1))
			return false;
#endif

		ctx->length_modifier = LENGTH_MODIFIER_J;

		break;
	case 'z':
#ifndef _WIN32
		if (!append_subformat(ctx, ctx->format + ctx->i, 1))
#if defined(_WIN32)
		if (!append_subformat(ctx, "I", 1))
			return false;
#elif defined(__wii__)
		if (!append_subformat(ctx, "l", 1))
			return false;
#else
		if (!append_subformat(ctx, "I", 1))
		if (!append_subformat(ctx, ctx->format + ctx->i, 1))
			return false;
#endif

		ctx->length_modifier = LENGTH_MODIFIER_Z;

		break;
	case 't':
#ifndef _WIN32
		if (!append_subformat(ctx, ctx->format + ctx->i, 1))
#if defined(_WIN32)
		if (!append_subformat(ctx, "I", 1))
			return false;
#elif defined(__wii__)
		if (!append_subformat(ctx, "l", 1))
			return false;
#else
		if (!append_subformat(ctx, "I", 1))
		if (!append_subformat(ctx, ctx->format + ctx->i, 1))
			return false;
#endif

		ctx->length_modifier = LENGTH_MODIFIER_T;

		break;
	case 'L':