mirror of
https://github.com/HDFGroup/hdf5.git
synced 2026-09-25 04:09:44 +03:00
Strip HD prefix from string/char C API calls (#3540)
* Strip HD prefix from string/char C API calls * HD(f)(put|get)(s|c) * HDstr* * HDv*printf * HD(s)(print|scan)f * HDperror But NOT: * HDstrcase* * HDvasprintf * HDstrtok_r * HDstrndup As those are not C99 and have portability work-around implementations. They will be handled later. * Fix th5_system.c screwup
This commit is contained in:
+1
-1
@@ -220,7 +220,7 @@ test_array_compound_array()
|
||||
|
||||
// Check the 2nd field's name
|
||||
H5std_string field2_name = ctype_check.getMemberName(1);
|
||||
if (HDstrcmp(field2_name.c_str(), "f") != 0)
|
||||
if (strcmp(field2_name.c_str(), "f") != 0)
|
||||
TestErrPrintf("Compound field name doesn't match!, field2_name=%s\n", field2_name.c_str());
|
||||
|
||||
// Get the 2nd field's datatype
|
||||
|
||||
Reference in New Issue
Block a user