Skip to content

Commit 591f1da

Browse files
committed
Merge branch 'develop' of https://github.com/hozlucas28/C-Practical-Work-2024 into develop
2 parents 9da3e65 + 19a1d91 commit 591f1da

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
@@ -76,7 +76,8 @@ char** new2DArray(int rows, int cols) {
7676

7777
void sleep(int miliseconds) {
7878
clock_t startTime = clock();
79-
while (clock() < (startTime + miliseconds));
79+
while (clock() < (startTime + miliseconds))
80+
;
8081
}
8182

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

0 commit comments

Comments
 (0)