Skip to content
Snippets Groups Projects
Commit d80fbb45 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

zaxisInqStdname: revert last changes.

parent a29bea30
No related branches found
No related tags found
No related merge requests found
......@@ -645,12 +645,8 @@ void zaxisInqUnits(int zaxisID, char *units)
void zaxisInqStdname(int zaxisID, char *stdname)
{
if ( stdname )
{
stdname[0] = 0;
zaxis_t *zaxisptr = zaxis_to_pointer(zaxisID);
if ( zaxisptr->stdname ) strcpy(stdname, zaxisptr->stdname);
}
zaxis_t *zaxisptr = zaxis_to_pointer(zaxisID);
strcpy(stdname, zaxisptr->stdname);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment