+2024-05-11 Bruno Haible <bruno@clisp.org>
+
+ Continue to use spaces for indentation, not tabs.
+ * lib/strftime.c: Untabify. Correct indentation.
+ * tests/test-posix_memalign.c: Untabify.
+
2024-05-11 Bruno Haible <bruno@clisp.org>
error-h: Avoid namespace pollution on mingw.
enum pad_style
{
- ZERO_PAD, /* (default) Pad with 0 unless format says otherwise. */
- ALWAYS_ZERO_PAD, /* '0' Always pad with 0. */
- SIGN_PAD, /* '+' Always output a sign. */
- SPACE_PAD, /* '_' Pad with space. */
- NO_PAD /* '-' Do not pad. */
+ ZERO_PAD, /* (default) Pad with 0 unless format says otherwise. */
+ ALWAYS_ZERO_PAD, /* '0' Always pad with 0. */
+ SIGN_PAD, /* '+' Always output a sign. */
+ SPACE_PAD, /* '_' Pad with space. */
+ NO_PAD /* '-' Do not pad. */
};
#define TM_YEAR_BASE 1900
}
if (sizeof (void *) <= 8)
- {
- ASSERT (posix_memalign (&aligned8_blocks[i], 8, size) == 0);
- ASSERT (aligned8_blocks[i] != NULL);
- ASSERT (((uintptr_t) aligned8_blocks[i] % 8) == 0);
- memset (aligned8_blocks[i], 'w', size);
- }
+ {
+ ASSERT (posix_memalign (&aligned8_blocks[i], 8, size) == 0);
+ ASSERT (aligned8_blocks[i] != NULL);
+ ASSERT (((uintptr_t) aligned8_blocks[i] % 8) == 0);
+ memset (aligned8_blocks[i], 'w', size);
+ }
ASSERT (posix_memalign (&aligned16_blocks[i], 16, size) == 0);
ASSERT (aligned16_blocks[i] != NULL);
if (sizeof (void *) <= 4)
free (aligned4_blocks[i]);
if (sizeof (void *) <= 8)
- free (aligned8_blocks[i]);
+ free (aligned8_blocks[i]);
free (aligned16_blocks[i]);
free (aligned32_blocks[i]);
free (aligned64_blocks[i]);