[PATCH] 2.4.19-pre10 s/Efoo/-Efoo/ fs/intermezzo/*.c

Anthony J. Breeds-Taurima (tony@cantech.net.au)
Tue, 4 Jun 2002 16:58:05 +0800 (WST)


Hello All,
Small cleanup patch. Peter this is as discussed with you. I know
it's already in your tree trying to knock one of the kernel janitors jobs on
the head.

Yours Tony

Jan 22-26 2003 Linux.Conf.AU http://conf.linux.org.au/
The Australian Linux Technical Conference!
--------------------------------------------------------------------------------
diff -urN -X /home/tony/src/kernel/dontdiff linux-2.4.19-pre10.clean/fs/intermezzo/dir.c linux-2.4.19-pre10/fs/intermezzo/dir.c
--- linux-2.4.19-pre10.clean/fs/intermezzo/dir.c Tue Apr 30 13:21:23 2002
+++ linux-2.4.19-pre10/fs/intermezzo/dir.c Tue Jun 4 16:38:24 2002
@@ -129,7 +129,7 @@
PRESTO_ALLOC(buffer, char *, PAGE_SIZE);
if ( !buffer ) {
printk("PRESTO: out of memory!\n");
- return ENOMEM;
+ return -ENOMEM;
}
path = presto_path(de, root, buffer, PAGE_SIZE);
pathlen = MYPATHLEN(buffer, path);
diff -urN -X /home/tony/src/kernel/dontdiff linux-2.4.19-pre10.clean/fs/intermezzo/file.c linux-2.4.19-pre10/fs/intermezzo/file.c
--- linux-2.4.19-pre10.clean/fs/intermezzo/file.c Tue Apr 30 13:21:23 2002
+++ linux-2.4.19-pre10/fs/intermezzo/file.c Tue Jun 4 16:38:24 2002
@@ -63,7 +63,7 @@
PRESTO_ALLOC(buffer, char *, PAGE_SIZE);
if ( !buffer ) {
printk("PRESTO: out of memory!\n");
- return ENOMEM;
+ return -ENOMEM;
}
path = presto_path(de, buffer, PAGE_SIZE);
pathlen = MYPATHLEN(buffer, path);

-
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/