From 3abdc57f466f80eecc615d7e640305f381339cb8 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Jos=C3=A9=20Fonseca?= <jose.r.fonseca@gmail.com>
Date: Tue, 8 May 2012 09:05:53 +0100
Subject: [PATCH] Fix tracediff.py's --width argument conversion (issue #77).

Thanks for wrabbit-revisited spotting problem and proposing fix.
---
 scripts/tracediff.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/tracediff.py b/scripts/tracediff.py
index f86fc39..86d1e00 100755
--- a/scripts/tracediff.py
+++ b/scripts/tracediff.py
@@ -184,7 +184,7 @@ def main():
         help="calls to compare from source trace")
     optparser.add_option(
         '-w', '--width', metavar='NUM',
-        type="string", dest="width", default=default_width,
+        type="int", dest="width", default=default_width,
         help="columns [default: %default]")
 
     global options
-- 
2.45.2