From 7ea186090f07e7ce9a9f394d4f692d0f6ac638b9 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Wed, 3 Aug 2011 09:15:50 +0000 Subject: [PATCH] Fix a recently introduced compiler warning / remove more superfluous double quotes in a #warning statement git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@3794 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scst/src/dev_handlers/scst_user.c | 2 +- scst/src/scst_main.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scst/src/dev_handlers/scst_user.c b/scst/src/dev_handlers/scst_user.c index f8038bbef..7a166fe0e 100644 --- a/scst/src/dev_handlers/scst_user.c +++ b/scst/src/dev_handlers/scst_user.c @@ -38,7 +38,7 @@ #ifndef INSIDE_KERNEL_TREE #if defined(CONFIG_HIGHMEM4G) || defined(CONFIG_HIGHMEM64G) #warning HIGHMEM kernel configurations are not supported by this module,\ - because nowadays it doesn't worth the effort. Consider changing\ + because nowadays it is not worth the effort. Consider changing\ VMSPLIT option or use a 64-bit configuration instead. See README file\ for details. #endif diff --git a/scst/src/scst_main.c b/scst/src/scst_main.c index 9cd24224b..01d938c71 100644 --- a/scst/src/scst_main.c +++ b/scst/src/scst_main.c @@ -52,12 +52,12 @@ details. #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 30) #if !defined(CONFIG_SCST_STRICT_SERIALIZING) #warning Patch scst_exec_req_fifo- was not applied on \ -your kernel and CONFIG_SCST_STRICT_SERIALIZING isn't defined. \ +your kernel and CONFIG_SCST_STRICT_SERIALIZING is not defined. \ Pass-through dev handlers will not work. #endif /* !defined(CONFIG_SCST_STRICT_SERIALIZING) */ #else /* LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 30) */ -#warning "Patch scst_exec_req_fifo- was not applied on \ -your kernel. Pass-through dev handlers will not work." +#warning Patch scst_exec_req_fifo- was not applied on \ +your kernel. Pass-through dev handlers will not work. #endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 30) */ #endif /* !defined(SCSI_EXEC_REQ_FIFO_DEFINED) */