Skip to content

Commit

Permalink
Merge pull request #28 from NHOrus/master
Browse files Browse the repository at this point in the history
Fix C99 errors uncovered by -Wint-conversion and -Werror,-Wincompatib…
  • Loading branch information
rouault committed Apr 4, 2024
2 parents 8319fdc + 89e7b17 commit e2f9eec
Showing 1 changed file with 3 additions and 2 deletions.
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

0 comments on commit e2f9eec

Please sign in to comment.