Skip to content
Snippets Groups Projects
Commit cdf69941 authored by Virgile Prevosto's avatar Virgile Prevosto
Browse files

update oracle after !2990

parent 9f8c9255
No related branches found
No related tags found
No related merge requests found
...@@ -119,7 +119,7 @@ int decode_int(char *s) ...@@ -119,7 +119,7 @@ int decode_int(char *s)
int __retres; int __retres;
char c; char c;
/*@ ghost decode_int_pre_func(s); */ /*@ ghost decode_int_pre_func(s); */
int intmax = ~ (1 << (sizeof(int) * (unsigned int)8 - (unsigned int)1)); int intmax = ~ (1 << (sizeof(int) * (unsigned long)8 - (unsigned long)1));
int cutlim = intmax % 10; int cutlim = intmax % 10;
int cutoff = intmax / 10; int cutoff = intmax / 10;
int value = 0; int value = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment