Skip to content

Commit

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

Expand Down

0 comments on commit 4a74cc5

Please sign in to comment.