Skip to content

Commit 01413bd

Browse files
committed
Merge branch 'develop' of https://github.com/hozlucas28/C-Practical-Work-2024 into develop
2 parents 672e6c7 + d1682c3 commit 01413bd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libs/utilities.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ int isStrIn(char* str, char* arr[], int size) {
4545

4646
void sleep(int miliseconds) {
4747
clock_t startTime = clock();
48-
while (clock() < (startTime + miliseconds));
48+
while (clock() < (startTime + miliseconds))
49+
;
4950
}
5051

5152
int strcmpi(const char* str01, const char* str02) {

0 commit comments

Comments
 (0)