Skip to content

Commit 5ea55f3

Browse files
committed
Screenshot: Use implicit default parameters of Core::System::spawn()
1 parent 4ebef32 commit 5ea55f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Userland/Applications/Screenshot/MainWindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ void MainWindow::take_screenshot()
8282
arguments.append("-c"sv);
8383

8484
// FIXME: Place common screenshot code into library and use that
85-
MUST(Core::Process::spawn("/bin/shot"sv, arguments, m_destination->text(), Core::Process::KeepAsChild::No));
85+
MUST(Core::Process::spawn("/bin/shot"sv, arguments, m_destination->text()));
8686
}
8787

8888
}

0 commit comments

Comments
 (0)