myadm

Simple MySQL client for the terminal
git clone git://git.bitsmanent.org/myadm
Log | Files | Refs | README | LICENSE

commit 657572271386ef097d848124db9108a2b7d37c4a
parent 7012f5de152cd51a5604b742e6e528cd1287a986
Author: Claudio Alessi <smoppy@gmail.com>
Date:   Mon, 25 Apr 2016 12:39:33 +0200

Remove a newline from a status message.

Diffstat:
Mmyadm.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/myadm.c b/myadm.c @@ -336,7 +336,7 @@ editrecord(const Arg *arg) { else { mysql_exec(buf); if(*mysql_error(mysql)) - ui_set("status", "Wrong SQL code.\n"); + ui_set("status", "Wrong SQL code."); else reload(NULL); }