From 8a0b96bd27c516be4ccfbda70e918747e29cec1b Mon Sep 17 00:00:00 2001 From: Roland Illig Date: Tue, 17 Aug 2004 11:19:31 +0000 Subject: [PATCH] Made name and prefix of vfs_class constant. --- vfs/vfs-impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vfs/vfs-impl.h b/vfs/vfs-impl.h index 305bff48e..6299b85a4 100644 --- a/vfs/vfs-impl.h +++ b/vfs/vfs-impl.h @@ -12,9 +12,9 @@ typedef void (*fill_names_f) (const char *); struct vfs_class { struct vfs_class *next; - char *name; /* "FIles over SHell" */ + const char *name; /* "FIles over SHell" */ int flags; - char *prefix; /* "fish:" */ + const char *prefix; /* "fish:" */ void *data; /* this is for filesystem's own use */ int verrno; /* can't use errno because glibc2 might define errno as function */