summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorTyge Lovset <[email protected]>2023-08-15 00:37:45 +0200
committerTyge Lovset <[email protected]>2023-08-15 00:37:45 +0200
commit50099b084e0e27aa74c53d73a9c33790e5f00aeb (patch)
tree7537d16d84ed963f96fb7661dcdffe85a6865017 /include
parentb6f7896ff21002e58e9af12fd553da32bda5f6d1 (diff)
downloadSTC-modified-50099b084e0e27aa74c53d73a9c33790e5f00aeb.tar.gz
STC-modified-50099b084e0e27aa74c53d73a9c33790e5f00aeb.zip
Minors.
Diffstat (limited to 'include')
-rw-r--r--include/stc/ccommon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stc/ccommon.h b/include/stc/ccommon.h
index e5422adc..42631f85 100644
--- a/include/stc/ccommon.h
+++ b/include/stc/ccommon.h
@@ -133,7 +133,7 @@ typedef const char* ccharptr;
#define c_sv(...) c_MACRO_OVERLOAD(c_sv, __VA_ARGS__)
#define c_sv_1(literal) c_sv_2(literal, c_litstrlen(literal))
#define c_sv_2(str, n) (c_LITERAL(csview){str, n})
-#define c_SV(ss) (int)(ss).size, (ss).str // printf("%.*s\n", c_SV(ss));
+#define c_SV(sv) (int)(sv).size, (sv).str // printf("%.*s\n", c_SV(sv));
#define c_rs(literal) c_rs_2(literal, c_litstrlen(literal))
#define c_rs_2(str, n) (c_LITERAL(crawstr){str, n})