From d448f901a2b99d05a64fa2a369654e1d31ec1888 Mon Sep 17 00:00:00 2001 From: luz paz Date: Fri, 25 Dec 2020 08:37:59 -0500 Subject: [PATCH] Fix source typo s/unsinged/unsigned/ --- opennurbs_color.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opennurbs_color.cpp b/opennurbs_color.cpp index a4f97926..dd90cba2 100644 --- a/opennurbs_color.cpp +++ b/opennurbs_color.cpp @@ -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;