- Minor code cleanup and error log fix.

This commit is contained in:
2024-04-24 20:31:34 +02:00
parent 4fbe71e892
commit f1bcb0126b
3 changed files with 26 additions and 26 deletions

View File

@@ -466,14 +466,14 @@ typedef int NDT_Index_Type;
// }
//
// default:
// {
// printf( "ND_Default_Manager() called with an undefined command %d\n", Command);
// return(NDS_ERRAPI);
// {
// LG_LOG_ERROR_1( "Manager called with an undefined command: (%d)", Command);
// return( NDS_ERRAPI);
// }
// }
//
// printf( "ND_Default_Manager() called with command %d (%s)\n", Command, Command_Name);
// return(NDS_OK);
// LG_LOG_ERROR_2( "Manager internal error with command: (%d) name: [%s]", Command, Command_Name);
// return( NDS_OK);
// }
@@ -822,7 +822,7 @@ NDD_DLL_API NDT_Status ND_Library_StdErr_Set_C( FILE *);
/*----------------------------------------------------------------------------*/
/* Create a new data structure */
/*----------------------------------------------------------------------------*/
/* (O) Root_Ptr_Ptr: Pointer adress of the new sata structure */
/* (O) Root_Ptr_Ptr: Pointer adress of the new data structure */
/* (I) Index_Nb: Number of index */
/* (I) Index_Type_Ptr: Array of Index type (List, tree, ...) */
/* (I) Manager_Name: Manager function name */