mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
- Corrected a couple more compiler warnings caused by mutable/constant
string pointer assignments. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15149 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: stdio_vfscanf.c,v 1.20 2006-01-08 12:04:25 obarthel Exp $
|
||||
* $Id: stdio_vfscanf.c,v 1.21 2006-09-25 14:51:15 obarthel Exp $
|
||||
*
|
||||
* :ts=4
|
||||
*
|
||||
@ -897,9 +897,9 @@ vfscanf(FILE *stream, const char *format, va_list arg)
|
||||
*/
|
||||
if(__locale_table[LC_NUMERIC] != NULL)
|
||||
{
|
||||
unsigned char * point;
|
||||
const unsigned char * point;
|
||||
|
||||
point = (unsigned char *)__locale_table[LC_NUMERIC]->loc_DecimalPoint;
|
||||
point = (const unsigned char *)__locale_table[LC_NUMERIC]->loc_DecimalPoint;
|
||||
|
||||
if(c == (*point) || c == '.')
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user