Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Fix console opCall to output ulong rather than uint, which works on b…
Browse files Browse the repository at this point in the history
…oth 32 and 64 bit.
  • Loading branch information
braddr committed Apr 15, 2011
1 parent 5c6b2fd commit b87992e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rt/util/console.d
Expand Up @@ -45,7 +45,7 @@ struct Console
}


Console opCall( uint val )
Console opCall( ulong val )
{
char[10] tmp = void;
return opCall( tmp.intToString( val ) );
Expand Down

0 comments on commit b87992e

Please sign in to comment.