Fix warning with gcc 11.3.1 #5

Merged
rarias merged 1 commits from fix-warnings into master 2024-05-10 15:30:35 +02:00
3 changed files with 3 additions and 2 deletions

View File

@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix breakdown model error that was preventing a zero value to be written in
the PRV trace.
- Fix gcc 11.3.1 -Wstringop-overflow warning.
## [1.9.0] - 2024-04-25

View File

@ -64,7 +64,7 @@ model_evspec_init(struct model_evspec *evspec, struct model_spec *spec)
}
struct ev_spec *
model_evspec_find(struct model_evspec *evspec, char mcv[4])
model_evspec_find(struct model_evspec *evspec, char *mcv)
{
struct ev_spec *s = NULL;
HASH_FIND_STR(evspec->spec, mcv, s);

View File

@ -19,6 +19,6 @@ struct model_evspec {
};
USE_RET int model_evspec_init(struct model_evspec *evspec, struct model_spec *spec);
USE_RET struct ev_spec *model_evspec_find(struct model_evspec *evspec, char mcv[4]);
USE_RET struct ev_spec *model_evspec_find(struct model_evspec *evspec, char *mcv);
#endif /* MODEL_EVSPEC_H */