From 748e6e50801a068603378beed3b633c2c551b59b Mon Sep 17 00:00:00 2001 From: Christian Spielberger Date: Fri, 17 May 2024 15:28:10 +0200 Subject: [PATCH] debug_cmd: rename enum constant --- modules/debug_cmd/debug_cmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/debug_cmd/debug_cmd.c b/modules/debug_cmd/debug_cmd.c index 562a2a6878..a4136ff47a 100644 --- a/modules/debug_cmd/debug_cmd.c +++ b/modules/debug_cmd/debug_cmd.c @@ -22,7 +22,7 @@ enum { - AUFILE_TIMEOUT = 5000, + FILEINFO_TIMEOUT = 5000, }; @@ -205,7 +205,7 @@ static void fileinfo_timeout(void *arg) module_event("debug_cmd", "aufileinfo", NULL, NULL, "length = %lf seconds", s); } - else if (tmr_jiffies() - st->t0 < AUFILE_TIMEOUT) { + else if (tmr_jiffies() - st->t0 < FILEINFO_TIMEOUT) { tmr_start(&st->tmr, 5, fileinfo_timeout, st); return; }