Skip to content

Commit

Permalink
Use correct escaping for unichars
Browse files Browse the repository at this point in the history
  • Loading branch information
cwalcott committed Sep 7, 2012
1 parent 607d966 commit 9c60222
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ZXingObjC/oned/ZXCode128Writer.m
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
#import "ZXCode128Writer.h"

// Dummy characters used to specify control characters in input
const unichar ESCAPE_FNC_1 = '\u00f1';
const unichar ESCAPE_FNC_2 = '\u00f2';
const unichar ESCAPE_FNC_3 = '\u00f3';
const unichar ESCAPE_FNC_4 = '\u00f4';
const unichar ESCAPE_FNC_1 = L'\u00f1';
const unichar ESCAPE_FNC_2 = L'\u00f2';
const unichar ESCAPE_FNC_3 = L'\u00f3';
const unichar ESCAPE_FNC_4 = L'\u00f4';

@interface ZXCode128Writer ()

Expand Down

0 comments on commit 9c60222

Please sign in to comment.