diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2014-07-12 00:01:09 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2014-07-12 00:01:09 +0000 |
commit | 2fa39ad859e59a5ad5796e522a4842717b2f6e0c (patch) | |
tree | 783acf11ed4625d6499f731501d984f25fa103fc /libgo/runtime/print.c | |
parent | ca76ae5c35f58f0ea40f656d3e555f2c740cf4ec (diff) | |
download | gcc-2fa39ad859e59a5ad5796e522a4842717b2f6e0c.zip gcc-2fa39ad859e59a5ad5796e522a4842717b2f6e0c.tar.gz gcc-2fa39ad859e59a5ad5796e522a4842717b2f6e0c.tar.bz2 |
runtime: Merge master revision 19185.
This revision renames several files in the runtime directory
from .c to .goc.
From-SVN: r212472
Diffstat (limited to 'libgo/runtime/print.c')
-rw-r--r-- | libgo/runtime/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/runtime/print.c b/libgo/runtime/print.c index d00b638..f602e9a 100644 --- a/libgo/runtime/print.c +++ b/libgo/runtime/print.c @@ -320,7 +320,7 @@ runtime_printhex(uint64 v) void runtime_printpointer(void *p) { - runtime_printhex((uint64)(uintptr)p); + runtime_printhex((uintptr)p); } void |