changeset 32377:8b160dad46ab

Add a missing const to declaration.
author reimar
date Sat, 09 Oct 2010 12:08:50 +0000
parents 0997281a39ca
children 150df72e808f
files vidix/mtrr.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;