renaming local variable

This commit is contained in:
Marcello Stanisci 2016-09-20 13:11:39 +02:00
parent 54862377d6
commit b3c4803c55

View File

@ -125,13 +125,13 @@ static char *
get_signkey_file (const char *exchange_directory, get_signkey_file (const char *exchange_directory,
struct GNUNET_TIME_Absolute start) struct GNUNET_TIME_Absolute start)
{ {
char *dir; char *fn;
GNUNET_asprintf (&dir, GNUNET_asprintf (&fn,
"%s" DIR_SEPARATOR_STR TALER_EXCHANGEDB_DIR_SIGNING_KEYS DIR_SEPARATOR_STR "%llu", "%s" DIR_SEPARATOR_STR TALER_EXCHANGEDB_DIR_SIGNING_KEYS DIR_SEPARATOR_STR "%llu",
exchange_directory, exchange_directory,
(unsigned long long) start.abs_value_us); (unsigned long long) start.abs_value_us);
return dir; return fn;
} }