mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Get rid of compiler warning on format strings
This gets rid of compiler warnings "format not a string literal and no format arguments [-Wformat-security]". E.g. when building distribution packages these warnings are often treated as errors preventing the build (with good reason). Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
This commit is contained in:
parent
8873381496
commit
bdedf46e4c
3 changed files with 7 additions and 7 deletions
|
@ -91,7 +91,7 @@ static int get_gasidx(struct dive *dive, int o2, int he)
|
|||
void get_gas_string(int o2, int he, char *text, int len)
|
||||
{
|
||||
if (is_air(o2, he))
|
||||
snprintf(text, len, translate("gettextFromC","air"));
|
||||
snprintf(text, len, "%s", translate("gettextFromC","air"));
|
||||
else if (he == 0)
|
||||
snprintf(text, len, translate("gettextFromC","EAN%d"), (o2 + 5) / 10);
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue