|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When compiling libmng for RVCT the following compiler warnings were
reported:
- #177-D: variable "pTemp" was declared but never referenced
- #14-D: extra text after expected end of preprocessing directive
This fix delays the pTemp declaration, until they are needed inside
used for example in 'mng_create_imagedataobject' function.
For 'extra text after expected end of preprocessing directive' warning
the fix is to use:
#endif /* MNG_SUPPORT_WRITE */
Instead of:
#endif MNG_SUPPORT_WRITE
Task-number: 241223
Reviewed-by: Espen Riskedal
|