Descriptionlib9: restore printing of signed integers
A casualty of https://codereview.appspot.com/10195044.
If x is an 32-bit int and u is a 64-bit ulong,
u = (uint)x // converts to uint before extension, so zero fills
u = (ulong)x // sign-extends
Patch Set 1 #Patch Set 2 : diff -r c224c549a3c7 https://code.google.com/p/go/ #Patch Set 3 : diff -r c224c549a3c7 https://code.google.com/p/go/ #MessagesTotal messages: 3
|