diff options
Diffstat (limited to 'src/pkg/runtime/string.goc')
| -rw-r--r-- | src/pkg/runtime/string.goc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pkg/runtime/string.goc b/src/pkg/runtime/string.goc index 15d690a921..dccb97128a 100644 --- a/src/pkg/runtime/string.goc +++ b/src/pkg/runtime/string.goc @@ -10,10 +10,10 @@ package runtime String runtime·emptystring; -int32 +intgo runtime·findnull(byte *s) { - int32 l; + intgo l; if(s == nil) return 0; @@ -22,10 +22,10 @@ runtime·findnull(byte *s) return l; } -int32 +intgo runtime·findnullw(uint16 *s) { - int32 l; + intgo l; if(s == nil) return 0; |
