Skip to content

Commit f5bf7a4

Browse files
committed
remove const from primivite types
1 parent 2bef383 commit f5bf7a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/_zstd/_zstdmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ set_zstd_error(const _zstd_state* const state,
7474
}
7575

7676
typedef struct {
77-
const int parameter;
78-
const char parameter_name[32];
77+
int parameter;
78+
char parameter_name[32];
7979
} ParameterInfo;
8080

8181
static const ParameterInfo cp_list[] =

0 commit comments

Comments
 (0)