diff options
| author | tafaar <[email protected]> | 2022-10-18 14:42:39 -0700 |
|---|---|---|
| committer | tafaar <[email protected]> | 2022-10-18 14:42:39 -0700 |
| commit | 9848ad42ac6bcfa37e7bea414ed4c416b9e4ba97 (patch) | |
| tree | 83dc9d282729bc5341f56d946fb2b1610636b70b | |
| parent | answered 3.6 (diff) | |
| download | cst116-ch9-debugging-hill-9848ad42ac6bcfa37e7bea414ed4c416b9e4ba97.tar.xz cst116-ch9-debugging-hill-9848ad42ac6bcfa37e7bea414ed4c416b9e4ba97.zip | |
fixed 3.6
| -rw-r--r-- | CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp index 44709a4..c49a8b1 100644 --- a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp +++ b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp @@ -94,7 +94,7 @@ int main() // Breakpoint 2
// Put breakpoint on the following line
- PrintResults(age, days);
+ PrintResults(days, age);
return 0;
}
|