diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2015-08-20 20:42:19 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-08-21 10:36:53 -0400 |
commit | 38601f06b756161b7bfa1414e7a1968450609198 (patch) | |
tree | d8c4f5709a1830b809d23b51c319ed0c7249d5f4 /scripts/maint/checkSpace.pl | |
parent | 32220d38c04bdb0aeccfcd67715e11a655eb297b (diff) | |
download | tor-38601f06b756161b7bfa1414e7a1968450609198.tar.gz tor-38601f06b756161b7bfa1414e7a1968450609198.zip |
Observe workqueue_reply_t in check-spaces
Diffstat (limited to 'scripts/maint/checkSpace.pl')
-rwxr-xr-x | scripts/maint/checkSpace.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/maint/checkSpace.pl b/scripts/maint/checkSpace.pl index c785d89567..906281112d 100755 --- a/scripts/maint/checkSpace.pl +++ b/scripts/maint/checkSpace.pl @@ -129,7 +129,8 @@ for $fn (@ARGV) { $1 ne "switch" and $1 ne "return" and $1 ne "int" and $1 ne "elsif" and $1 ne "WINAPI" and $2 ne "WINAPI" and $1 ne "void" and $1 ne "__attribute__" and $1 ne "op" and - $1 ne "size_t" and $1 ne "double") { + $1 ne "size_t" and $1 ne "double" and + $1 ne "workqueue_reply_t") { print " fn ():$fn:$.\n"; } } |