Skip to content

Commit

Permalink
fix: add missing parameters to printf
Browse files Browse the repository at this point in the history
Signed-off-by: Henrik Cohrs <[email protected]>
  • Loading branch information
Henrik Cohrs committed Jun 10, 2024
1 parent 83c6264 commit 05e756f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/linux/aliastool.c
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ void eepromtool(char *ifname, int slave, int mode, char *fname)
if (mode == MODE_WRITEALIAS)
{
if(eeprom_writealias(slave, alias))
printf("Alias %4.4X written successfully to slave %d\n");
printf("Alias %4.4X written successfully to slave %d\n", alias, slave);
else
printf("Alias not written\n");
}
Expand Down

0 comments on commit 05e756f

Please sign in to comment.