- Complete API function header documentation,

- ND_Value_Alloc() argument normalisation: API Break!
This commit is contained in:
2023-08-17 17:53:27 +02:00
parent 65fe68ca34
commit 70b7e5a49e
5 changed files with 839 additions and 681 deletions

View File

@@ -475,7 +475,7 @@ void DataStruct_Load( NDT_Root *ds_ptr, FILE *demo_file)
printf( "Input line read: \t(%s)\t(%s)\t(%s)\t(%s)\n", val0, val1, val2, val3);
printf( "Allocate Vallue: ");
if( ( status = ND_Value_Alloc( ds_ptr, (void **)&value_ptr)) != NDS_OK)
if( ( status = ND_Value_Alloc( (void **)&value_ptr, ds_ptr)) != NDS_OK)
{
printf( "ND_Value_Alloc() failed (%d) !\n", status);
}