Skip to content

Commit

Permalink
less verbose fpsCTRL
Browse files Browse the repository at this point in the history
  • Loading branch information
oguyon committed Sep 18, 2023
1 parent 70f909e commit 5d2f776
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 14 deletions.
9 changes: 7 additions & 2 deletions src/COREMOD_memory/delete_image.c
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,10 @@ errno_t delete_image(
* DELETE_IMAGE_ERRMODE_EXIT
*
*/
errno_t delete_image_ID(const char *__restrict imname, int errmode)
errno_t delete_image_ID(
const char *__restrict imname,
int errmode
)
{
DEBUG_TRACE_FSTART();

Expand All @@ -301,7 +304,9 @@ errno_t delete_image_ID(const char *__restrict imname, int errmode)


// delete all images with a prefix
errno_t delete_image_ID_prefix(const char *prefix)
errno_t delete_image_ID_prefix(
const char *prefix
)
{
imageID i;

Expand Down
21 changes: 11 additions & 10 deletions src/CommandLineInterface/fps/fps_scan.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,16 @@
*
*/

errno_t functionparameter_scan_fps(uint32_t mode,
char *fpsnamemask,
FUNCTION_PARAMETER_STRUCT *fps,
KEYWORD_TREE_NODE *keywnode,
int *ptr_NBkwn,
int *ptr_fpsindex,
long *ptr_pindex,
int verbose)
errno_t functionparameter_scan_fps(
uint32_t mode,
char *fpsnamemask,
FUNCTION_PARAMETER_STRUCT *fps,
KEYWORD_TREE_NODE *keywnode,
int *ptr_NBkwn,
int *ptr_fpsindex,
long *ptr_pindex,
int verbose
)
{
int fpsindex;
int pindex;
Expand Down Expand Up @@ -471,8 +473,7 @@ errno_t functionparameter_scan_fps(uint32_t mode,
fps[fpsindex]
.parray[pindex0]
.keyword[l]);
printf(" %s",
keywnode[kwnindex].keyword[l]);
//printf(" %s", keywnode[kwnindex].keyword[l]);
if(l == 0)
{
strcpy(keywnode[kwnindex].keywordfull,
Expand Down
4 changes: 2 additions & 2 deletions src/CommandLineInterface/fpsCTRL/fpsCTRL_TUI.c
Original file line number Diff line number Diff line change
Expand Up @@ -431,10 +431,10 @@ errno_t functionparameter_CTRLscreen(



printf("%d function parameter structure(s) imported, %ld parameters\n",
/*printf("%d function parameter structure(s) imported, %ld parameters\n",
fpsCTRLvar.NBfps,
NBpindex);
fflush(stdout);
fflush(stdout);*/
}


Expand Down

0 comments on commit 5d2f776

Please sign in to comment.