diff options
| author | Roel Kluin <[email protected]> | 2009-07-15 18:29:07 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2009-07-28 20:45:22 +0000 |
| commit | 4df7b3e0370ab6161ea2f258f51dd7c43bef2bda (patch) | |
| tree | e6726f1ec3edb3f66071faa0591f32e864de8f52 /lib/dynamic_debug.c | |
| parent | driver core: firmware_class:fix memory leak of page pointers array (diff) | |
| download | kernel-4df7b3e0370ab6161ea2f258f51dd7c43bef2bda.tar.gz kernel-4df7b3e0370ab6161ea2f258f51dd7c43bef2bda.zip | |
Dynamic debug: fix typo: -/->
The member was intended, not the local variable.
Signed-off-by: Roel Kluin <[email protected]>
Cc: Jason Baron <[email protected]>
Cc: Greg Banks <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'lib/dynamic_debug.c')
| -rw-r--r-- | lib/dynamic_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c index 833139ce1e22..e22c148e4b7f 100644 --- a/lib/dynamic_debug.c +++ b/lib/dynamic_debug.c @@ -164,7 +164,7 @@ static void ddebug_change(const struct ddebug_query *query, if (!newflags) dt->num_enabled--; - else if (!dp-flags) + else if (!dp->flags) dt->num_enabled++; dp->flags = newflags; if (newflags) { |
