NVProperty generic key value store using the MCU flash area.
Dependents: Turtle_RadioShuttle
Revision 9:ac6c43b29434, committed 2019-02-04
- Comitter:
- Helmut Tschemernjak
- Date:
- Mon Feb 04 10:22:29 2019 +0100
- Parent:
- 8:b42bb4130002
- Child:
- 10:7999d15fd227
- Commit message:
- Updated
Changed in this revision
| NVProperty_Editor.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/NVProperty_Editor.cpp Mon Feb 04 10:04:54 2019 +0100
+++ b/NVProperty_Editor.cpp Mon Feb 04 10:22:29 2019 +0100
@@ -156,7 +156,7 @@
}
break;
case 's': {
- char *v = strchr(++cmd, '=');
+ char *v = (char *)strchr(++cmd, '=');
if (!v)
continue;
*v++ = 0;
Helmut Tschemernjak