Skip to content
Snippets Groups Projects
Commit a3f3857f authored by niklasBr's avatar niklasBr
Browse files

Changed variable name a to argsInt

parent ddbbce2b
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ namespace ConsoleApplication1 ...@@ -16,7 +16,7 @@ namespace ConsoleApplication1
public static void Main(string[] args) public static void Main(string[] args)
{ {
int[] a = getArgsAsIntArr(args); int[] argsInt = getArgsAsIntArr(args);
...@@ -24,8 +24,8 @@ namespace ConsoleApplication1 ...@@ -24,8 +24,8 @@ namespace ConsoleApplication1
createNConsumers(a[0], buffer); createNConsumers(argsInt[0], buffer);
createNProducers(a[1], buffer); createNProducers(argsInt[1], buffer);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment