summaryrefslogtreecommitdiff
path: root/src/tools/find_static
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/find_static')
-rwxr-xr-xsrc/tools/find_static8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/find_static b/src/tools/find_static
index 28762728af..c7014e6014 100755
--- a/src/tools/find_static
+++ b/src/tools/find_static
@@ -26,8 +26,8 @@ echo "
copy debug from '/tmp/"$$"';
- select *
- into table debug2
+ select *
+ into table debug2
from debug;
create index idebug on debug(scope,func);
@@ -35,8 +35,8 @@ echo "
vacuum debug;
vacuum debug2;
- update debug2
- set scope = '_'
+ update debug2
+ set scope = '_'
from debug
where debug2.func = debug.func and
debug2.scope = 'T' and debug.scope = 'U';