From cce5e02ed9dc933f6177d333e91a0f3398fa83fa Mon Sep 17 00:00:00 2001 From: celso Date: Mon, 9 Jan 2023 14:12:31 -0300 Subject: [PATCH] fixed indentation --- src/skomb.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/skomb.h b/src/skomb.h index a506c51..f47243c 100644 --- a/src/skomb.h +++ b/src/skomb.h @@ -69,10 +69,10 @@ int splitc_toi(char *line, int sep, int *dest){ i++; continue; } - temp[0] = line[i]; - dest[j] = atoi(temp); - i++; - j++; + temp[0] = line[i]; + dest[j] = atoi(temp); + i++; + j++; } return j; }