Fix source typo

s/unsinged/unsigned/
This commit is contained in:
luz paz
2020-12-25 08:37:59 -05:00
parent 484ba88836
commit d448f901a2

View File

@@ -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;