Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix C99 errors uncovered by -Wint-conversion and -Werror,-Wincompatib… #28

Merged
merged 1 commit into from Apr 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions vpflib/vpfprop.c
Expand Up @@ -840,7 +840,8 @@ Set the case of the filename for the current operating system.
#endif

{
int32 ncov,i,j,k,n;
char ncov;
int32 i,j,k,n;
char path[255];
char **ptr, **coverages, **subset, **fcnames=(char **)NULL;

Expand Down Expand Up @@ -1446,7 +1447,7 @@ Set the case of the filename for the current operating system.
int32 *nfc )
#else
char **coverage_feature_class_names (library_path, coverage, nfc)
char *library_path, coverage;
char *library_path, *coverage;
int32 *nfc;
#endif

Expand Down