sergelaurent
Technical User
I have the following code:
set PIX_ACPPBOX_ERROR_BASE 0x100000;
set PIX_TOO_MANY_OFFSET_REF [expr $PIX_ACPPBOX_ERROR_BASE | 0x108];
while executing the logical or command, the returned result is in decimal format!!!
The problem is that i am using a switch where only hexadecimal values are used!!!
My question is, can I force the resulting result of the logical of to be in the hexadecimal format or how can I convert the result in hexadecimal?
set PIX_ACPPBOX_ERROR_BASE 0x100000;
set PIX_TOO_MANY_OFFSET_REF [expr $PIX_ACPPBOX_ERROR_BASE | 0x108];
while executing the logical or command, the returned result is in decimal format!!!
The problem is that i am using a switch where only hexadecimal values are used!!!
My question is, can I force the resulting result of the logical of to be in the hexadecimal format or how can I convert the result in hexadecimal?