myadm

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

commit 865912975206deb671869e51797c50827223acc1
parent d8a953c959ed92042327719dce04c077bb2fe533
Author: Claudio Alessi <smoppy@gmail.com>
Date:   Tue,  1 Mar 2016 20:40:35 +0100

Style up

Diffstat:
Mcore.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core.c b/core.c @@ -1,5 +1,4 @@ /* http://www.chiark.greenend.org.uk/~sgtatham/algorithms/listsort.html */ -/* better name/logic(?) from view->choice */ #include <stdio.h> #include <stdarg.h> @@ -312,6 +311,7 @@ mysql_items(MYSQL_RES *res, Item **items) { return nrows; } +/* XXX this function is a disaster */ void stfl_putitem(Item *item) { char t[32]; /* XXX */ @@ -371,7 +371,7 @@ void records(void) { MYSQL_RES *res; - if(!selview->choice || !selview->choice->fields) + if(!(selview->choice && selview->choice->nfields)) die("records: no choice.\n"); if(!(res = mysql_exec("select * from `%s`", selview->choice->fields[0]))) die("records\n");