build: Run indent for M2.

* src/gc.c: Indented.
* src/string.c: Likewise.
This commit is contained in:
Jan (janneke) Nieuwenhuizen 2020-04-19 11:36:18 +02:00
parent 9cbbb2fc78
commit 348e070bac
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
2 changed files with 4 additions and 4 deletions

View File

@ -40,12 +40,12 @@ struct scm *g_cells;
struct scm *g_news;
SCM
gc_init () ///((internal))
gc_init () ///((internal))
{
#if SYSTEM_LIBC
ARENA_SIZE = 100000000; // 2.3GiB
ARENA_SIZE = 100000000; // 2.3GiB
#else
ARENA_SIZE = 300000; // 32b: 3MiB, 64b: 6 MiB
ARENA_SIZE = 300000; // 32b: 3MiB, 64b: 6 MiB
#endif
MAX_ARENA_SIZE = 100000000;
STACK_SIZE = 20000;

View File

@ -42,7 +42,7 @@ assert_max_string (size_t i, char const *msg, char *string)
}
char const *
list_to_cstring (SCM list, size_t * size)
list_to_cstring (SCM list, size_t *size)
{
size_t i = 0;
char *p = g_buf;