Skip to content

Commit 19a1d91

Browse files
ci: format code
1 parent f20fc5b commit 19a1d91

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)