mirror of
https://github.com/mcneel/opennurbs.git
synced 2026-03-16 05:56:03 +08:00
Fix source typo
s/unsinged/unsigned/
This commit is contained in:
@@ -120,7 +120,7 @@ int ON_Color::Compare( const ON_Color& b ) const
|
||||
int ac = (int)m_color;
|
||||
int bc = (int)b.m_color;
|
||||
#if defined(ON_BIG_ENDIAN)
|
||||
unsinged char* swapper = (unsigned char*)∾
|
||||
unsigned char* swapper = (unsigned char*)∾
|
||||
unsigned char c = swapper[0]; swapper[0] = swapper[3]; swapper[3] = c;
|
||||
c = swapper[1]; swapper[1] = swapper[2]; swapper[2] = c;
|
||||
swapper = (unsigned char*)&bc;
|
||||
|
||||
Reference in New Issue
Block a user