diff options
| author | Tim Murray <timmurray@google.com> | 2013-03-20 16:54:03 -0700 |
|---|---|---|
| committer | Tim Murray <timmurray@google.com> | 2013-03-20 16:58:32 -0700 |
| commit | 099bc262f862cdeb547cf8a78fe9e0e92560f437 (patch) | |
| tree | 53ce151f307ea059e2677e014ae402106e98e4ce /rsScript.cpp | |
| parent | 962e720b3d1c27bcfec90374ff393584b99577b3 (diff) | |
| download | android_frameworks_rs-099bc262f862cdeb547cf8a78fe9e0e92560f437.tar.gz android_frameworks_rs-099bc262f862cdeb547cf8a78fe9e0e92560f437.tar.bz2 android_frameworks_rs-099bc262f862cdeb547cf8a78fe9e0e92560f437.zip | |
Start making RS 64-bit clean.
Change-Id: Ie40ad9a1d2b59094c86eb7e40b358e60120ce213
Diffstat (limited to 'rsScript.cpp')
| -rw-r--r-- | rsScript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rsScript.cpp b/rsScript.cpp index f23d1070..4b2765af 100644 --- a/rsScript.cpp +++ b/rsScript.cpp @@ -199,7 +199,7 @@ void rsi_ScriptSetVarObj(Context *rsc, RsScript vs, uint32_t slot, RsObjectBase s->setVarObj(slot, o); } -void rsi_ScriptSetVarJ(Context *rsc, RsScript vs, uint32_t slot, long long value) { +void rsi_ScriptSetVarJ(Context *rsc, RsScript vs, uint32_t slot, int64_t value) { Script *s = static_cast<Script *>(vs); s->setVar(slot, &value, sizeof(value)); } |
