summaryrefslogtreecommitdiff
path: root/src/runtime/c
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/c')
-rw-r--r--src/runtime/c/gu/seq.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/c/gu/seq.h b/src/runtime/c/gu/seq.h
index 90c664271..cb18a90b5 100644
--- a/src/runtime/c/gu/seq.h
+++ b/src/runtime/c/gu/seq.h
@@ -74,7 +74,7 @@ gu_buf_data_seq(GuBuf* buf);
#define gu_buf_get(BUF, T, I) \
(*gu_buf_index(BUF, T, I))
-#define gu_buf_set(BUF, T, I) \
+#define gu_buf_set(BUF, T, I, V) \
GU_BEGIN \
(*gu_buf_index(BUF, T, I) = (V)); \
GU_END