diff options
author | 2021-04-29 21:45:19 +0200 | |
---|---|---|
committer | 2021-04-29 21:45:19 +0200 | |
commit | e50fedec822efc7b7090f95862b782d91ca8aec0 (patch) | |
tree | 22dd6b534d00a1f7fc3823f0d88e0d43547fc87b /scripts/gcc-plugins/structleak_plugin.c | |
parent | Merge branch 'for-5.13/plantronics' into for-linus (diff) | |
parent | HID: surface-hid: Add support for legacy keyboard interface (diff) | |
download | linux-rng-e50fedec822efc7b7090f95862b782d91ca8aec0.tar.xz linux-rng-e50fedec822efc7b7090f95862b782d91ca8aec0.zip |
Merge branch 'for-5.13/surface-system-aggregator-intergration' into for-linus
- Surface Aggregator Module support from Maximilian Luz
Diffstat (limited to 'scripts/gcc-plugins/structleak_plugin.c')
-rw-r--r-- | scripts/gcc-plugins/structleak_plugin.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/gcc-plugins/structleak_plugin.c b/scripts/gcc-plugins/structleak_plugin.c index 29b480c33a8d..d7190e443a14 100644 --- a/scripts/gcc-plugins/structleak_plugin.c +++ b/scripts/gcc-plugins/structleak_plugin.c @@ -170,7 +170,6 @@ static void initialize(tree var) static unsigned int structleak_execute(void) { basic_block bb; - unsigned int ret = 0; tree var; unsigned int i; @@ -200,7 +199,7 @@ static unsigned int structleak_execute(void) initialize(var); } - return ret; + return 0; } #define PASS_NAME structleak |