Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 926949
Collapse All | Expand All

(-)a/gptpart.cc (-2 / +1 lines)
Lines 131-137 string GPTPart::GetDescription(void) { Link Here
131
      } // if
131
      } // if
132
      else {
132
      else {
133
         utf8 += (char) ( 0xf0 | ( uni >> 18 ) ) ;
133
         utf8 += (char) ( 0xf0 | ( uni >> 18 ) ) ;
134
         utf8 += (char) ( 0xe0 | ( ( uni >> 12 ) & 0x3f ) ) ;
134
         utf8 += (char) ( 0x80 | ( ( uni >> 12 ) & 0x3f ) ) ;
135
         utf8 += (char) ( 0x80 | ( ( uni >> 6 ) & 0x3f ) ) ;
135
         utf8 += (char) ( 0x80 | ( ( uni >> 6 ) & 0x3f ) ) ;
136
         utf8 += (char) ( 0x80 | ( uni & 0x3f ) ) ;
136
         utf8 += (char) ( 0x80 | ( uni & 0x3f ) ) ;
137
      } // if
137
      } // if
138
- 

Return to bug 926949