In the sample code given to print the arguments given to ```git psuh```,
the iterating variable i is not declared as integer. I have fixed it so
the error is no longer there.
Signed-off-by: Saksham Mittal <redacted>
---
Documentation/MyFirstContribution.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -297,7 +297,7 @@ existing `printf()` calls in place: "Your args (there are %d):\n", argc), argc);- for (i = 0; i < argc; i++)+ for (int i = 0; i < argc; i++) printf("%d: %s\n", i, argv[i]); printf(_("Your current working directory:\n<top-level>%s%s\n"),
From: Johannes Altmanninger <hidden> Date: 2021-11-13 13:05:18
On Sat, Nov 13, 2021 at 05:58:35PM +0530, Saksham Mittal wrote:
quoted hunk
In the sample code given to print the arguments given to ```git psuh```,
the iterating variable i is not declared as integer. I have fixed it so
the error is no longer there.
Signed-off-by: Saksham Mittal <redacted>
---
Documentation/MyFirstContribution.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -297,7 +297,7 @@ existing `printf()` calls in place: "Your args (there are %d):\n", argc), argc);- for (i = 0; i < argc; i++)+ for (int i = 0; i < argc; i++)
It is declared, there is an "int i;" a few lines up.