Skip to content

Commit 62e13b7

Browse files
committed
fix: remove unnecessary structure keyword and pointer symbol
1 parent 2722541 commit 62e13b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/llama_cpp/llama_cpp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1905,7 +1905,7 @@ static VALUE rb_llama_adapter_lora_free(VALUE self, VALUE adapter) {
19051905

19061906
/* llama_memory_t wrapper */
19071907
typedef struct {
1908-
struct llama_memory_t* memory;
1908+
llama_memory_t memory;
19091909
} llama_memory_t_wrapper;
19101910

19111911
static void llama_memory_t_wrapper_free(void *ptr) {

0 commit comments

Comments
 (0)