Skip to content

Commit 94656de

Browse files
committed
fix compiler warning about integer comparison
1 parent 274c3bf commit 94656de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ArduinoJsonJWT.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class ArduinoJsonJWT {
1717
String _secret;
1818

1919
const String JWT_HEADER = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9";
20-
const size_t JWT_HEADER_SIZE = JWT_HEADER.length();
20+
const int JWT_HEADER_SIZE = JWT_HEADER.length();
2121

2222
String sign(String &value);
2323

0 commit comments

Comments
 (0)