diff options
author | fche <fche> | 2005-11-08 17:02:13 +0000 |
---|---|---|
committer | fche <fche> | 2005-11-08 17:02:13 +0000 |
commit | 1dca31ba51b8d76ce950f81d5108f94dbf624c47 (patch) | |
tree | 48f82cc1276492acdd3e279b9585f52e2dbbe6b6 /translate.cxx | |
parent | f75abd8ee3fb4b153ebd6c2758400fafdfd2ee6d (diff) | |
download | systemtap-steved-1dca31ba51b8d76ce950f81d5108f94dbf624c47.tar.gz systemtap-steved-1dca31ba51b8d76ce950f81d5108f94dbf624c47.tar.xz systemtap-steved-1dca31ba51b8d76ce950f81d5108f94dbf624c47.zip |
2005-11-08 Frank Ch. Eigler <fche@redhat.com>
Patch from "Mao, Bibo" <bibo.mao@intel.com>
* translate.cxx (mapvar::exists): Correct 64-bit type mismatch.
Diffstat (limited to 'translate.cxx')
-rw-r--r-- | translate.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/translate.cxx b/translate.cxx index 0c1ce84f..d3e9a492 100644 --- a/translate.cxx +++ b/translate.cxx @@ -471,7 +471,7 @@ struct mapvar string exists (vector<tmpvar> const & indices) const { - return "(((int)" + call_prefix("get", indices) + ")) != 0)"; + return "(((int64_t)" + call_prefix("get", indices) + ")) != 0)"; } string get (vector<tmpvar> const & indices) const |