barectf/templates/c: name `void *` context parameters `vctx`
[barectf.git] / barectf / templates / c / barectf.c.j2
index 5a9df28b469ce46b0bd5de5451014f8fcfc69f2c..e42b3f407c76ef33b2e20b91b21bc49fadafc860 100644 (file)
@@ -66,9 +66,9 @@ union _d2u {
        uint64_t u;
 };
 
-uint32_t {{ prefix }}packet_size(const void * const ctx)
+uint32_t {{ prefix }}packet_size(const void * const vctx)
 {
-       return _FROM_VOID_PTR(const struct {{ ctx_struct_name }}, ctx)->packet_size;
+       return _FROM_VOID_PTR(const struct {{ ctx_struct_name }}, vctx)->packet_size;
 }
 
 int {{ prefix }}packet_is_full(const void * const vctx)
This page took 0.024106 seconds and 4 git commands to generate.