Big endian bustage fix from bug 336575

git-svn-id: svn://10.0.0.236/trunk@206712 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
smontagu%smontagu.org 2006-08-07 08:25:06 +00:00
parent 400e87286f
commit 40b1ce5f1e

View File

@ -52,7 +52,7 @@
#else
#define ShiftInCell(sub,len,min,max) \
PACK(sub,len), PACK(min, max)
#define ShiftOutCell(sub,len,min,max,minh,minl,maxh,maxl) \
#define ShiftOutCell(sub,len,minh,minl,maxh,maxl) \
PACK(sub,len), PACK(minh,minl), PACK(maxh,maxl)
#endif