From 92f3282a84e23a0741eaa8e8eefec5413bffc631 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Tue, 31 May 2016 12:45:53 +0100 Subject: [PATCH] syscall6502: fix silly warning --- Library/tools/syscall_6502.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/tools/syscall_6502.c b/Library/tools/syscall_6502.c index f92d55e1..cbc06812 100644 --- a/Library/tools/syscall_6502.c +++ b/Library/tools/syscall_6502.c @@ -54,7 +54,7 @@ static void write_makefile(void) fprintf(fp, "# Autogenerated by tools/syscall_6502\n"); fprintf(fp, "AS = ca65\n"); fprintf(fp, "AR = ar65\n"); - fprintf(fp, "ASYS = syscall.s\n", syscall_name[0]); + fprintf(fp, "ASYS = syscall.s\n"); fprintf(fp, "ASRCS = syscall_%s.s\n", syscall_name[i]); for (i = 1; i < NR_SYSCALL; i++) fprintf(fp, "ASRCS += syscall_%s.s\n", syscall_name[i]); -- 2.34.1