Skip to content

Commit

Permalink
printing float as int bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
openshwprojects committed Mar 8, 2023
1 parent 8741e40 commit 1c9f644
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmnds/cmd_repeatingEvents.c
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ commandResult_t RepeatingEvents_Cmd_AddRepeatingEvent(const void *context, const
addLogAdv(LOG_INFO, LOG_FEATURE_CMD, "Interval was too small!");
}

addLogAdv(LOG_INFO, LOG_FEATURE_CMD,"addRepeatingEvent: interval %i, repeats %i, command [%s]",interval,times,cmdToRepeat);
addLogAdv(LOG_INFO, LOG_FEATURE_CMD,"addRepeatingEvent: interval %f, repeats %i, command [%s]",interval,times,cmdToRepeat);

RepeatingEvents_AddRepeatingEvent(cmdToRepeat,interval, times, userID);

Expand Down

0 comments on commit 1c9f644

Please sign in to comment.