Skip to content

Commit 223a483

Browse files
committed
Merge branch 'develop' of https://github.com/hozlucas28/C-Practical-Work-2024 into develop
2 parents 5572947 + 87949cf commit 223a483

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

7676
void sleep(int miliseconds) {
7777
const clock_t startTime = clock();
78-
while (clock() < (startTime + miliseconds));
78+
while (clock() < (startTime + miliseconds))
79+
;
7980
}
8081

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

0 commit comments

Comments
 (0)