diff options
| author | Geert Uytterhoeven <geert@linux-m68k.org> | 2004-06-17 18:14:31 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-06-17 18:14:31 -0700 |
| commit | 8aacba7b52f3ba653ab642bd3812a9776ab31bde (patch) | |
| tree | f0adc559b769cbc54ec89570f4f99071f8f09b62 /include/linux/fb.h | |
| parent | cb1f40094e32d9d4c26b7d8775afae546bcd21b5 (diff) | |
[PATCH] fix warning in fbmem.c
Fix a const/non-const warning.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/fb.h')
| -rw-r--r-- | include/linux/fb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fb.h b/include/linux/fb.h index 3e7d73f1c7a7..c4984007a726 100644 --- a/include/linux/fb.h +++ b/include/linux/fb.h @@ -376,7 +376,7 @@ struct fb_cursor { __u16 set; /* what to set */ __u16 enable; /* cursor on/off */ __u16 rop; /* bitop operation */ - char *mask; /* cursor mask bits */ + const char *mask; /* cursor mask bits */ struct fbcurpos hot; /* cursor hot spot */ struct fb_image image; /* Cursor image */ }; |
