Skip to content
This repository was archived by the owner on Jul 14, 2023. It is now read-only.

Commit 550dfac

Browse files
committed
Update char to be unsigned
1 parent e68ed7d commit 550dfac

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Libraries/plist/Sources/Format/JSONWriter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ bool JSONWriter::primitiveWriteEscapedString(std::string const &string) {
5454
return false;
5555
}
5656

57-
for (char c : string) {
57+
for (unsigned char c : string) {
5858
switch (c) {
5959
case '\b':
6060
if (!primitiveWriteString("\\b")) {

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ On Windows you can install those tools with [Chocolatey](https://chocolatey.org)
5050

5151
```sh
5252
git clone --depth=1 https://github.com/screenplaydev/plutil
53-
cd xcbuild
5453
git submodule update --init
5554
```
5655

0 commit comments

Comments
 (0)