mtkennerly / shawl

Windows service wrapper for arbitrary commands
MIT License
495 stars 15 forks source link

Fix Clippy warning redundant_clone #5

Closed Enet4 closed 4 years ago

Enet4 commented 4 years ago

format! macro already provides a String, so calling to_string is not needed here.

This should at least clear the error emerging from Clippy in CI.

mtkennerly commented 4 years ago

Thanks!