diff options
-rwxr-xr-x | scripts/check-for-type-punning-warnings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-for-type-punning-warnings.py b/scripts/check-for-type-punning-warnings.py index a108e369..68e99614 100755 --- a/scripts/check-for-type-punning-warnings.py +++ b/scripts/check-for-type-punning-warnings.py @@ -14,7 +14,7 @@ for log in glob.glob('/var/www/auto-build/' + date + '/logs/20*.txt'): f = open(log, 'r') logoutput.append('======================================================================\n') logoutput.append(log + '\n') - logoutput.append('======================================================================\n') + logoutput.append('--------------------------\n') for line in f: if line.find('warning: dereferencing type-punned pointer will break strict-aliasing rules') > -1: logoutput.append(line.replace('/home/pd/auto-build/', '') |