missed a ';' on a ifdef mac section. fixing build bustage

git-svn-id: svn://10.0.0.236/trunk@129226 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mjudge%netscape.com
2002-09-11 03:41:46 +00:00
parent fdc588a427
commit d190cc810e
2 changed files with 2 additions and 2 deletions

View File

@@ -366,7 +366,7 @@ SelectionImageService::CreateImage(nscolor aImageColor, imgIContainer *aContaine
data[i+2] = NS_GET_B(aImageColor);
#endif
#if defined(XP_MAC) || defined(XP_MACOSX)
data[i] = 0
data[i] = 0;
data[i+1] = NS_GET_R(aImageColor);
data[i+2] = NS_GET_G(aImageColor);
data[i+3] = NS_GET_B(aImageColor);

View File

@@ -366,7 +366,7 @@ SelectionImageService::CreateImage(nscolor aImageColor, imgIContainer *aContaine
data[i+2] = NS_GET_B(aImageColor);
#endif
#if defined(XP_MAC) || defined(XP_MACOSX)
data[i] = 0
data[i] = 0;
data[i+1] = NS_GET_R(aImageColor);
data[i+2] = NS_GET_G(aImageColor);
data[i+3] = NS_GET_B(aImageColor);