From 8e291d5bbbdb9cd3a1e678ea2e47e65ac427d048 Mon Sep 17 00:00:00 2001 From: PartialVolume <22084881+PartialVolume@users.noreply.github.com> Date: Wed, 17 Dec 2025 00:03:07 +0000 Subject: [PATCH] Update gui.c Removed redundant snprintf commands --- src/gui.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gui.c b/src/gui.c index 316dfdc..d254827 100644 --- a/src/gui.c +++ b/src/gui.c @@ -2395,14 +2395,12 @@ static void nwipe_gui_tail_truncate( const char* in, char* out, size_t outsz, in if( !in ) { - snprintf( out, outsz, "(null)" ); return; } int len = (int) strlen( in ); if( maxw <= 0 ) { - snprintf( out, outsz, "" ); return; }