aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2022-11-30 08:49:38 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2022-11-30 08:49:38 +0000
commitc69d0114ea18e486742e9746560d002cbc6efbed (patch)
tree9334cc9cad06717192e80351eb4df98a661984ee /tools
parent7336190bbc254dbf3533256702f2b960db775ea9 (diff)
tools/check_static.py - fix remaining errors
Diffstat (limited to 'tools')
-rwxr-xr-xtools/check_static.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/check_static.py b/tools/check_static.py
index 4168623ec7..60335b60be 100755
--- a/tools/check_static.py
+++ b/tools/check_static.py
@@ -46,7 +46,7 @@ class CalledSymbols:
else:
object_file = os.path.join(build_folder, os.path.dirname(file), 'CMakeFiles', last_dir + '.dir', os.path.basename(file) + '.o')
if not os.path.exists(object_file):
- print('Warning -', object_file, 'does not exist')
+ #print('Warning -', object_file, 'does not exist')
return
command = ['nm', object_file]
for f in subprocess.check_output(command).splitlines():
@@ -79,7 +79,7 @@ class DefinedSymbols:
object_file = os.path.join(build_folder, 'epan', 'dissectors', 'CMakeFiles', 'dissectors.dir', os.path.basename(file) + '.o')
if not os.path.exists(object_file):
- print('Warning -', object_file, 'does not exist')
+ #print('Warning -', object_file, 'does not exist')
return
header_file= file.replace('.c', '.h')