aboutsummaryrefslogtreecommitdiffstats
path: root/tbl_qcmd.c
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2017-02-25 00:44:03 +0000
committerFreeArtMan <dos21h@gmail.com>2017-02-25 00:44:03 +0000
commit58493553ec4d0efaca1c1adddcdeb00e94e881bf (patch)
tree03a1e6c1c803fc74b907d3a0202bd8d0e8bf1f1d /tbl_qcmd.c
parentb2e98d7936b57f11e0d37ad522d3382f682af071 (diff)
downloadagni-58493553ec4d0efaca1c1adddcdeb00e94e881bf.tar.gz
agni-58493553ec4d0efaca1c1adddcdeb00e94e881bf.zip
Formatring patch from Ms.IJ applied
Diffstat (limited to 'tbl_qcmd.c')
-rw-r--r--tbl_qcmd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tbl_qcmd.c b/tbl_qcmd.c
index fb45c5a..3d511b4 100644
--- a/tbl_qcmd.c
+++ b/tbl_qcmd.c
@@ -38,7 +38,7 @@ int tbl_exec_add(tbl_exec *tbl, tble_exec *cmd)
if (tbl->size+1<tbl->max_size)
{
tbl->size += 1;
- } else
+ } else
{
return -1;
}
@@ -65,7 +65,7 @@ tble_exec *tbl_exec_search_cmd(tbl_exec *tbl, char *cmd)
for (i=0;i<tbl->max_size;i++)
{
cur_cmd = tbl->reg_cmd[i];
- if ((strncmp(cur_cmd->cmd,cmd,strlen(cmd)) == 0) &&
+ if ((strncmp(cur_cmd->cmd,cmd,strlen(cmd)) == 0) &&
(strlen(cmd) == strlen(cur_cmd->cmd)))
{
ret = cur_cmd;
@@ -160,7 +160,7 @@ int tbl_qcmd_add(tbl_qcmd *tbl, tble_qcmd *cmd)
if (tbl->size+1<tbl->max_size)
{
tbl->size += 1;
- } else
+ } else
{
return -1;
}
@@ -181,7 +181,7 @@ int tbl_qcmd_chk(tbl_qcmd *tbl)
for (i=0;i<tbl->max_size;i++)
{
- //if command in some state like segfaulted or
+ //if command in some state like segfaulted or
// finished running then lets check
if ((tbl->cmd[i]->state == QCMD_TIMEOUT)||
(tbl->cmd[i]->state == QCMD_DONE))