Skip to content

Commit

Permalink
Merge pull request #626 from timesqueezer/patch-1
Browse files Browse the repository at this point in the history
Fixed types for starttime and endtime (int -> long)
  • Loading branch information
WalterBright committed Jan 15, 2012
2 parents bda7973 + 446ea40 commit 0736834
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions samples/pi.d
@@ -1,4 +1,3 @@

import std.stdio;
import std.conv;
import std.c.stdlib;
Expand All @@ -12,7 +11,7 @@ int q;

int main(string[] args)
{
int startime, endtime;
long startime, endtime;
int i;

if (args.length == 2)
Expand Down

0 comments on commit 0736834

Please sign in to comment.