From dfe6d6c664c491395c9951ba073f8ad3bb6d6780 Mon Sep 17 00:00:00 2001 From: Flavio Bizzarri <33379291+newfla@users.noreply.github.com> Date: Thu, 8 Jan 2026 15:52:22 +0100 Subject: [PATCH] fix: missing newline after seed in sd_img_gen_params_to_str (#1183) --- stable-diffusion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stable-diffusion.cpp b/stable-diffusion.cpp index 75689ff..d4eed5d 100644 --- a/stable-diffusion.cpp +++ b/stable-diffusion.cpp @@ -3046,7 +3046,7 @@ char* sd_img_gen_params_to_str(const sd_img_gen_params_t* sd_img_gen_params) { "height: %d\n" "sample_params: %s\n" "strength: %.2f\n" - "seed: %" PRId64 + "seed: %" PRId64 "\n" "batch_count: %d\n" "ref_images_count: %d\n" "auto_resize_ref_image: %s\n"