ggerganov commited on
Commit
496acd2
·
unverified ·
1 Parent(s): ed67112

ggml : make gcc happy (minor)

Browse files
Files changed (1) hide show
  1. ggml.c +1 -1
ggml.c CHANGED
@@ -1404,7 +1404,7 @@ struct ggml_context * ggml_init(struct ggml_init_params params) {
1404
  const uint64_t t_start = ggml_time_us(); UNUSED(t_start);
1405
 
1406
  g_state = (struct ggml_state) {
1407
- /*.contexts =*/ { 0 },
1408
  };
1409
 
1410
  for (int i = 0; i < GGML_MAX_CONTEXTS; ++i) {
 
1404
  const uint64_t t_start = ggml_time_us(); UNUSED(t_start);
1405
 
1406
  g_state = (struct ggml_state) {
1407
+ /*.contexts =*/ { { 0 } },
1408
  };
1409
 
1410
  for (int i = 0; i < GGML_MAX_CONTEXTS; ++i) {