diff options
author | David Phillips <david@sighup.nz> | 2019-07-29 21:17:07 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2019-08-03 12:43:46 +1200 |
commit | f5fd3e2a07010db793827f4f9840d6c401f02257 (patch) | |
tree | d1d62783a2153d3879b25a37f9389f529900dbcf /parse.c | |
parent | dad8bb1e347ad293d99e374e24740f207208a20d (diff) | |
download | toy-cpu-assembler-f5fd3e2a07010db793827f4f9840d6c401f02257.tar.xz |
Misc tidy up of assembler sources
Diffstat (limited to 'parse.c')
-rw-r--r-- | parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ static struct instruction *insts; static size_t insts_count; static size_t byte_offset; -void emit(const char *fmt, ...) +static void emit(const char *fmt, ...) { va_list args; va_start(args, fmt); |