Skip to content

Commit 825e23d

Browse files
committed
Merge branch 'develop' of https://github.com/hozlucas28/C-Practical-Work-2024 into develop
2 parents fe14514 + e78849d commit 825e23d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libs/utilities.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ char** newMatrix(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)