Skip to content
Snippets Groups Projects
Commit 59b914e9 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Fix missing const declaration.

parent d09ab0f0
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ void cdiPrintDatatypes(void)
fprintf (stderr, "\n byte ordering is LITTLEENDIAN\n\n");
}
static char uuidFmt[] = "%02hhx%02hhx%02hhx%02hhx-"
static const char uuidFmt[] = "%02hhx%02hhx%02hhx%02hhx-"
"%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-"
"%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment