Skip to content

Commit f47d1a3

Browse files
committed
betty style
1 parent 8ae40bd commit f47d1a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

0x10-variadic_functions/0-sum_them_all.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ int sum_them_all(const unsigned int n, ...)
1313
va_list ptr;
1414

1515
va_start(ptr, n);
16-
16+
1717
for (index = 0; index < n; index++)
1818
result += va_arg(ptr, int);
1919

0 commit comments

Comments
 (0)