[svn:parrot] r38482 - trunk/src
petdance at svn.parrot.org
petdance at svn.parrot.org
Tue May 5 04:54:30 UTC 2009
Author: petdance
Date: Tue May 5 04:54:29 2009
New Revision: 38482
URL: https://trac.parrot.org/parrot/changeset/38482
Log:
use size_t instead of unsigned int in one place
Modified:
trunk/src/debug.c
Modified: trunk/src/debug.c
==============================================================================
--- trunk/src/debug.c Tue May 5 04:47:13 2009 (r38481)
+++ trunk/src/debug.c Tue May 5 04:54:29 2009 (r38482)
@@ -2756,7 +2756,7 @@
static const char regs[] = "ISPN";
for (j = 0; j < n_values; j++) {
- unsigned int idx = 0;
+ size_t idx = 0;
const int sig_value = VTABLE_get_integer_keyed_int(interp, sig, j);
/* Print the register name, e.g. P37. */
More information about the parrot-commits
mailing list