Fix arguments to diff in the roundTrip testing tool

git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@567 4cde692c-a291-49d1-8350-778aa11640f8
diff --git a/MetaTools/roundTrip.py b/MetaTools/roundTrip.py
index 1e2c382..9438f0b 100755
--- a/MetaTools/roundTrip.py
+++ b/MetaTools/roundTrip.py
@@ -43,7 +43,7 @@
 		options.mergeFile = None
 		ttx.ttDump(ttFile2, xmlFile2, options)
 		
-		diffcmd = 'diff -c2 -I ".*modified value\|checkSumAdjustment.*" "%s" "%s"' % (xmlFile1, xmlFile2)
+		diffcmd = 'diff -U2 -I ".*modified value\|checkSumAdjustment.*" "%s" "%s"' % (xmlFile1, xmlFile2)
 		output = os.popen(diffcmd, "r", 1)
 		lines = []
 		while 1: