Skip to content

Commit 4620c36

Browse files
committed
Merge branch 'develop' of https://github.com/hozlucas28/C-Practical-Work-2024 into develop
2 parents 43d12d4 + 5b923ac commit 4620c36

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
@@ -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)