diff options
author | rbuj <[email protected]> | 2019-09-05 12:02:59 +0200 |
---|---|---|
committer | lukefromdc <[email protected]> | 2019-09-08 19:35:20 +0000 |
commit | 4fb087c731af5282dc817bfc8350afe325eef532 (patch) | |
tree | ffc3f2b3660a8937085135062d7ff1b34846a73f /src/typedefs.h | |
parent | a837a98bf1d2b82b4ac7b773b892d9a411e19e77 (diff) | |
download | engrampa-4fb087c731af5282dc817bfc8350afe325eef532.tar.bz2 engrampa-4fb087c731af5282dc817bfc8350afe325eef532.tar.xz |
Initialization discards ‘const’ qualifier from pointer target type
Remove 317 warnings [-Wdiscarded-qualifiers].
Diffstat (limited to 'src/typedefs.h')
-rw-r--r-- | src/typedefs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/typedefs.h b/src/typedefs.h index 0206f51..82ce933 100644 --- a/src/typedefs.h +++ b/src/typedefs.h @@ -111,13 +111,13 @@ typedef struct { typedef struct { const char *mime_type; - char *default_ext; - char *name; + const char *default_ext; + const char *name; FrCommandCaps capabilities; } FrMimeTypeDescription; typedef struct { - char *ext; + const char *ext; const char *mime_type; } FrExtensionType; |