Messages in this thread Patch in this message |  | | Date | Mon, 29 Oct 2001 15:43:31 +0530 (IST) | From | Manik Raina <> | Subject | [PATCH] small compile warning fix |
| |
Hi,
ncplib_kernel.c defines ncp_add_mem_fromfs() but never uses it, resulting in a compile warning. Here are the diffs ...
thanks Manik
Index: ncplib_kernel.c =================================================================== RCS file: /vger/linux/fs/ncpfs/ncplib_kernel.c,v retrieving revision 1.29 diff -u -r1.29 ncplib_kernel.c --- ncplib_kernel.c 18 Sep 2001 22:29:08 -0000 1.29 +++ ncplib_kernel.c 29 Oct 2001 10:09:27 -0000 @@ -52,6 +52,11 @@ return; }
+#ifdef LATER +/* + * This function is not currently in use. This leads to a compiler warning. + * Remove #ifdef when in use... + */ static void ncp_add_mem_fromfs(struct ncp_server *server, const char *source, int size) { assert_server_locked(server); @@ -59,6 +64,7 @@ server->current_size += size; return; } +#endif
static void ncp_add_pstring(struct ncp_server *server, const char *s) { - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |