diff options
author | Damiano Galassi <[email protected]> | 2019-06-07 11:26:23 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2019-06-07 11:26:23 +0200 |
commit | f85f228e588bc7a4d2fba43ab51eedfb475768c3 (patch) | |
tree | 97c0657365831061bc9ef8bc38e9af7ca75aac57 /macosx/HBRange.m | |
parent | b0fce31fb6da40a98ef9af26845f67d81819f5b4 (diff) |
MacGui: fix warnings.
Diffstat (limited to 'macosx/HBRange.m')
-rw-r--r-- | macosx/HBRange.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBRange.m b/macosx/HBRange.m index 54468ff7a..4fd93c031 100644 --- a/macosx/HBRange.m +++ b/macosx/HBRange.m @@ -193,7 +193,7 @@ NSString *HBRangeChangedNotification = @"HBRangeChangedNotification"; { [coder encodeInt:1 forKey:@"HBRangeVersion"]; - encodeInt(_type); + encodeInt((int)_type); encodeInt(_chapterStart); encodeInt(_chapterStop); |