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:
Miika Turkia 2013-10-20 11:56:38 +03:00 committed by Dirk Hohndel
parent 8873381496
commit bdedf46e4c
3 changed files with 7 additions and 7 deletions

View file

@ -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