Skip to content

Commit 3ca4812

Browse files
committed
Fix validation error
1 parent f417d68 commit 3ca4812

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/source/pl/lib/std/time.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ namespace pl::lib::libstd::time {
184184

185185
if ( (dt.hours<0 || dt.hours>23) ||
186186
(dt.minutes<0 || dt.minutes>59) ||
187-
(dt.seconds<0 && dt.seconds>29) )
187+
(dt.seconds<0 || dt.seconds>29) )
188188
{
189189
return s_invalid;
190190
}

0 commit comments

Comments
 (0)