mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Core: remove variable name conflict
Having a parameter with the same name as a global variable is potentially confusing. Found via LGTM.com Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
b457965f50
commit
69248141c5
1 changed files with 5 additions and 5 deletions
|
@ -505,16 +505,16 @@ static void uemis_increased_timeout(int *timeout)
|
|||
usleep(*timeout);
|
||||
}
|
||||
|
||||
static char *build_ans_path(const char *path, int filenr)
|
||||
static char *build_ans_path(const char *path, int filenumber)
|
||||
{
|
||||
char *intermediate, *ans_path, fl[13];
|
||||
|
||||
/* Clamp filenr into the 0..9999 range. This is never necessary,
|
||||
* as filenr can never go above UEMIS_MAX_FILES, but gcc doesn't
|
||||
/* Clamp filenumber into the 0..9999 range. This is never necessary,
|
||||
* as filenumber can never go above UEMIS_MAX_FILES, but gcc doesn't
|
||||
* recognize that and produces very noisy warnings. */
|
||||
filenr = filenr < 0 ? 0 : filenr % 10000;
|
||||
filenumber = filenumber < 0 ? 0 : filenumber % 10000;
|
||||
|
||||
snprintf(fl, 13, "ANS%d.TXT", filenr);
|
||||
snprintf(fl, 13, "ANS%d.TXT", filenumber);
|
||||
intermediate = build_filename(path, "ANS");
|
||||
ans_path = build_filename(intermediate, fl);
|
||||
free(intermediate);
|
||||
|
|
Loading…
Reference in a new issue