lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> Roberto's small but useful 'struct' library, here:
> 
> 
> http://www.inf.puc-rio.br/~roberto/struct/struct.c
> 
> 
> needs to have line 83 changed from:
> 
> 
> -    case 'i': return getnum(fmt, sizeof(int));
> 
> 
> to:
> 
> 
> +    case 'I': case 'i': return getnum(fmt, sizeof(int));
> [...]

Many thanks for the report.

-- Roberto