Of course we want the last 100 lines, not the first 100 lines.
Use 'tail' instead of 'head'. Also fix text alignment from
previous patch.

diff --git a/documentation/bugreports b/documentation/bugreports
index f111c78..52c28bc 100644
--- a/documentation/bugreports
+++ b/documentation/bugreports
@@ -33,12 +33,12 @@
 	tcsh and other csh-like shells:
 
 	    wine -debugmsg +relay [other_options] program_name |& tee filename.out
-	head -100 filename.out > report_file
+	    tail -100 filename.out > report_file
 
 	bash and other sh-like shells:
 
 	    wine -debugmsg +relay [other_options] program_name 2>&1 | tee filename.out
-	    head -100 filename.out > report_file
+	    tail -100 filename.out > report_file
 
 	'report_file' will now contain the last hundred lines of the debugging
 	output, including the register dump and backtrace, which are the most