Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix a nit noticed by tylercurtis++.
  • Loading branch information
jnthn committed Aug 22, 2010
1 parent 1e62243 commit 03bf0be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/runtime/Runtime/Ops.cs
Expand Up @@ -395,7 +395,7 @@ public static RakudoObject equal_strs(ThreadContext TC, RakudoObject x, RakudoOb
/// <returns></returns>
public static RakudoObject logical_not_int(ThreadContext TC, RakudoObject x)
{
return Ops.box_int(TC, Ops.unbox_int(TC, x) == 0 ? 1 : 0, TC.DefaultIntBoxType);
return Ops.box_int(TC, Ops.unbox_int(TC, x) == 0 ? 1 : 0, TC.DefaultBoolBoxType);
}

/// <summary>
Expand Down

0 comments on commit 03bf0be

Please sign in to comment.