Skip to content

Commit 926be5a

Browse files
authored
Fix constant to be string instead of character (#28)
Fixes #27
1 parent 3ce24eb commit 926be5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/urlencode.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ std::string urlencode( const std::string &s, URLEncodeType enctype)
9494
break;
9595

9696
default:
97-
assert(false && 'Unknown urlencode type');
97+
assert(false && "Unknown urlencode type");
9898
break;
9999
}
100100
}

0 commit comments

Comments
 (0)