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 warnings #4264

Merged
merged 1 commit into from
Aug 19, 2024
Merged

Fix warnings #4264

merged 1 commit into from
Aug 19, 2024

Commits on Aug 18, 2024

  1. Fix warnings

    Fix following gcc warnings when SVG enabled:
    
    rtextures.c: In function 'LoadImageSvg':
    rtextures.c:374:52: warning: pointer targets in passing argument 1 of 'nsvgParse' differ in signedness [-Wpointer-sign]
      374 |             struct NSVGimage *svgImage = nsvgParse(fileData, "px", 96.0f);
          |                                                    ^~~~~~~~
          |                                                    |
          |                                                    unsigned char *
    In file included from rtextures.c:230:
    external/nanosvg.h:2952:28: note: expected 'char *' but argument is of type 'unsigned char *'
     2952 | NSVGimage* nsvgParse(char* input, const char* units, float dpi)
          |                      ~~~~~~^~~~~
    rtextures.c:407:43: warning: comparison of distinct pointer types lacks a cast [-Wcompare-distinct-pointer-types]
      407 |         if (isSvgStringValid && (fileData != fileNameOrString)) UnloadFileData(fileData);
          |                                           ^~
    rtextures.c: In function 'LoadImageFromMemory':
    rtextures.c:614:52: warning: passing argument 1 of 'nsvgParse' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
      614 |             struct NSVGimage *svgImage = nsvgParse(fileData, "px", 96.0f);
          |                                                    ^~~~~~~~
    external/nanosvg.h:2952:28: note: expected 'char *' but argument is of type 'const unsigned char *'
     2952 | NSVGimage* nsvgParse(char* input, const char* units, float dpi)
          |                      ~~~~~~^~~~~
    hanaxars authored Aug 18, 2024
    Configuration menu
    Copy the full SHA
    3142305 View commit details
    Browse the repository at this point in the history