From 84c5e6bce9c9750c69c9edfb1aad9c7cf3076dd7 Mon Sep 17 00:00:00 2001 From: Flavio Bizzarri <33379291+newfla@users.noreply.github.com> Date: Thu, 8 Jan 2026 14:51:29 +0100 Subject: [PATCH] fix: missing newline after seed in sd_img_gen_params_to_str --- 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"