]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
rust_binder: remove trailing comma
authorTamir Duberstein <tamird@gmail.com>
Sat, 18 Oct 2025 19:16:23 +0000 (15:16 -0400)
committerMiguel Ojeda <ojeda@kernel.org>
Mon, 20 Oct 2025 02:04:23 +0000 (04:04 +0200)
This prepares for a later commit in which we introduce a custom
formatting macro; that macro doesn't handle trailing commas so just
remove this one.

Reviewed-by: Alice Ryhl <aliceryhl@google.com>
Signed-off-by: Tamir Duberstein <tamird@gmail.com>
Link: https://patch.msgid.link/20251018-cstr-core-v18-2-9378a54385f8@gmail.com
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
drivers/android/binder/process.rs

index f13a747e784c84a0fb09cbf47442712106eba07c..d8111c990f212c6ddfed21c3394ed82b8e5fd632 100644 (file)
@@ -596,7 +596,7 @@ impl Process {
                     "  ref {}: desc {} {}node {debug_id} s {strong} w {weak}",
                     r.debug_id,
                     r.handle,
-                    if dead { "dead " } else { "" },
+                    if dead { "dead " } else { "" }
                 );
             }
         }