Skip to content

Commit b118274

Browse files
author
Jason Heath
committed
change from rustfmt after windows specific clippy changes
Signed-off-by: Jason Heath <jason.heath@progress.com>
1 parent 1d6f401 commit b118274

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

components/sup/src/manager/service/pipe_hook_client.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,10 +272,10 @@ fn stream_output<T>(out: T, log_file: &Path, preamble_str: &str)
272272
where T: Read
273273
{
274274
File::create(log_file).unwrap_or_else(|_| {
275-
panic!("{}: couldn't create log output file {}",
276-
preamble_str,
277-
&log_file.to_string_lossy())
278-
});
275+
panic!("{}: couldn't create log output file {}",
276+
preamble_str,
277+
&log_file.to_string_lossy())
278+
});
279279

280280
for line in BufReader::new(out).lines_lossy().flatten() {
281281
outputln!(preamble preamble_str, &line);

0 commit comments

Comments
 (0)