# HG changeset patch # User Mychaela Falconia # Date 1584133007 0 # Node ID ebb9377cf52ce75d4434fa6faf7019d2c49ece79 # Parent 00060bb8b2407ae82529d412a723e364692b975c fluid-mnf/machine.c: read operation time report message changed to match the reality of the number being in ms, not s diff -r 00060bb8b240 -r ebb9377cf52c fluid-mnf/machine.c --- a/fluid-mnf/machine.c Fri Mar 13 20:47:37 2020 +0000 +++ b/fluid-mnf/machine.c Fri Mar 13 20:56:47 2020 +0000 @@ -2098,7 +2098,7 @@ flowf(NORMAL, " ok\n"); time_read = stopwatch_stop(time_read); - flowf(VERBOSE, "Used time: %ds ok\n", time_read); + flowf(VERBOSE, "Used time: %d ms ok\n", time_read); }