aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'clox/src/debug.h')
-rw-r--r--clox/src/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/clox/src/debug.h b/clox/src/debug.h
index 5731d05..9381ba6 100644
--- a/clox/src/debug.h
+++ b/clox/src/debug.h
@@ -3,7 +3,7 @@
#include "chunk.h"
-void disassembleChunk(Chunk* chunk, const char* name);
-int disassembleInstruction(Chunk* chunk, int offset);
+void disassembleChunk(Chunk *chunk, const char *name);
+int disassembleInstruction(Chunk *chunk, int offset);
#endif