Skip to content

Commit

Permalink
max fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Quodss authored Aug 9, 2024
1 parent 4a74cc5 commit 17baecf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/noun/jets/a/max.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ u3qa_max(u3_atom a, u3_atom b)
return u3k(c3_max(a, b));
}
else {
if ( a == 0 ) return b;
if ( b == 0 ) return a;
c3_w a_w = u3r_met(0, a);
c3_w b_w = u3r_met(0, b);

Expand Down

0 comments on commit 17baecf

Please sign in to comment.