Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ryonakano committed Dec 14, 2024
1 parent 58ca3a5 commit 648d7af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Application.vala
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class BluetoothApp : Gtk.Application {
add_main_option_entries (OPTIONS_BLUETOOTH);
}

private File[] create_files_for_arg (ApplicationCommandLine command, string[] args) {
private File[] create_files_for_args (ApplicationCommandLine command, string[] args) {
File[] files = {};

foreach (unowned string arg in args) {
Expand Down Expand Up @@ -103,7 +103,7 @@ public class BluetoothApp : Gtk.Application {

// Handle "send" option
if (arg_files != null) {
File[] files = create_files_for_arg (command, arg_files);
File[] files = create_files_for_args (command, arg_files);

if (files.length > 0) {
scan_and_send_files (files);
Expand Down

0 comments on commit 648d7af

Please sign in to comment.