diff options
| author | Rob Pike <r@golang.org> | 2013-08-06 21:49:03 +1000 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2013-08-06 21:49:03 +1000 |
| commit | 82f5ca1ef05970fc271dc7e1cacaed8e27f65910 (patch) | |
| tree | ef3f2e422243e137c401926c9e8f6c44d3923d56 /src/pkg/runtime/runtime.c | |
| parent | 429a67e30033935d45e368d32b56dedb8c010fee (diff) | |
| download | go-82f5ca1ef05970fc271dc7e1cacaed8e27f65910.tar.xz | |
runtime: change int32 to intgo in findnull and findnullw
Update #6046.
This CL just does findnull and findnullw. There are other functions
to fix but doing them a few at a time will help isolate any (unlikely)
breakages these changes bring up in architectures I can't test
myself.
R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/12520043
Diffstat (limited to 'src/pkg/runtime/runtime.c')
| -rw-r--r-- | src/pkg/runtime/runtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/runtime.c b/src/pkg/runtime/runtime.c index a0e9a194c6..7f693589f6 100644 --- a/src/pkg/runtime/runtime.c +++ b/src/pkg/runtime/runtime.c @@ -393,7 +393,7 @@ void runtime·parsedebugvars(void) { byte *p; - int32 i, n; + intgo i, n; p = runtime·getenv("GODEBUG"); if(p == nil) |
