# HG changeset patch # User reimar # Date 1286626130 0 # Node ID 8b160dad46abe06a94730af693b98158628d69d1 # Parent 0997281a39cae836ae9b26f09fc9ff734ba720ff Add a missing const to declaration. diff -r 0997281a39ca -r 8b160dad46ab vidix/mtrr.c --- a/vidix/mtrr.c Sat Oct 09 12:07:49 2010 +0000 +++ b/vidix/mtrr.c Sat Oct 09 12:08:50 2010 +0000 @@ -41,7 +41,7 @@ { #ifdef __linux__ FILE * mtrr_fd; - char * stype; + const char *stype; switch(type) { case MTRR_TYPE_UNCACHABLE: stype = "uncachable"; break;