[svn:parrot] r41051 - in branches/pluggable_runcore: config/gen/platform/win32 tools/dev
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Sun Sep 6 09:16:57 UTC 2009
Author: mikehh
Date: Sun Sep 6 09:16:55 2009
New Revision: 41051
URL: https://trac.parrot.org/parrot/changeset/41051
Log:
fix some codetest failures after MANIFEST fixes
Modified:
branches/pluggable_runcore/config/gen/platform/win32/hires_timer.c
branches/pluggable_runcore/tools/dev/pprof2cg.pl
Modified: branches/pluggable_runcore/config/gen/platform/win32/hires_timer.c
==============================================================================
--- branches/pluggable_runcore/config/gen/platform/win32/hires_timer.c Sun Sep 6 09:02:41 2009 (r41050)
+++ branches/pluggable_runcore/config/gen/platform/win32/hires_timer.c Sun Sep 6 09:16:55 2009 (r41051)
@@ -48,7 +48,7 @@
/* QueryPerformanceCounter returns ticks per second, so divide 1 billion by
* that to find the length of each tick */
QueryPerformanceFrequency(&ticks);
- return (UINTVAL) (1000*1000*1000 / ticks.QuadPart );
+ return (UINTVAL) (1000*1000*1000 / ticks.QuadPart);
}
Modified: branches/pluggable_runcore/tools/dev/pprof2cg.pl
==============================================================================
--- branches/pluggable_runcore/tools/dev/pprof2cg.pl Sun Sep 6 09:02:41 2009 (r41050)
+++ branches/pluggable_runcore/tools/dev/pprof2cg.pl Sun Sep 6 09:16:55 2009 (r41051)
@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#! perl
# Copyright (C) 2009, Parrot Foundation.
# $Id$
More information about the parrot-commits
mailing list