Fix patch after print alias fix in 100_fo4.zig
This commit is contained in:
parent
c2dcaf3099
commit
6b29634279
1 changed files with 1 additions and 1 deletions
|
@ -7,5 +7,5 @@
|
||||||
- for (hex_nums, ???) |hn, ???| {
|
- for (hex_nums, ???) |hn, ???| {
|
||||||
+ for (hex_nums, dec_nums) |hn, dn| {
|
+ for (hex_nums, dec_nums) |hn, dn| {
|
||||||
if (hn != dn) {
|
if (hn != dn) {
|
||||||
std.debug.print("Uh oh! Found a mismatch: {d} vs {d}\n", .{ hn, dn });
|
print("Uh oh! Found a mismatch: {d} vs {d}\n", .{ hn, dn });
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue