> That's always a good start! Where is this repository that your patch is
> against?
http://cvs.savannah.gnu.org/viewvc/xmlfs/?root=hurdextras
> Your editor / mailer broke the lines, so this patch won't even apply.
> Either you instruct your editor / mailer, or let git send-email take care
> of
Hallo!
Olaf surely will already be drafting the email to introduce you to the
proper Git patch submissing wonders (short: have a local branch, better
yet, a separte branch per topic, commit logically independent patches in
there (for example, adding a .gitignore file is different from fixing
compi
The below patch fixes all compiler warnings. It's quite long as I use
a lot of warning flags (habit from when I was working on my own kernel
project):
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..e20fc66
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+*.o
+xmlfs
diff --