Compare commits

...

1 Commits

Author SHA1 Message Date
holger krekel
d13427cc84 fix bug that lead to all liveconfig tests failing 2019-08-13 22:03:24 +02:00

View File

@@ -19,8 +19,8 @@ macro_rules! progress {
Event::CONFIGURE_PROGRESS, Event::CONFIGURE_PROGRESS,
(if $progress < 1 { (if $progress < 1 {
1 1
} else if $progress > 999 { } else if $progress > 1000 {
999 1000
} else { } else {
$progress $progress
}) as uintptr_t, }) as uintptr_t,