Rename cfgfile to cfg_file in Loader.

This commit is contained in:
Christian Deacon
2025-03-01 10:37:13 -05:00
parent c5629a8603
commit e392b7355b
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ void ParseCommandLine(cmdline_t *cmd, int argc, char *argv[])
switch (c)
{
case 'c':
cmd->cfgfile = optarg;
cmd->cfg_file = optarg;
break;

View File

@@ -6,7 +6,7 @@
struct cmdline
{
char *cfgfile;
char *cfg_file;
unsigned int offload : 1;
unsigned int skb : 1;
unsigned int time;