epics-motor / motorNewport

EPICS motor drivers for Newport controllers
4 stars 6 forks source link

send_mess() uses 'const char *' #2

Closed tboegi closed 5 years ago

tboegi commented 5 years ago

The 3rd parameter in send_mess(), "name" can and should be a 'const char ' instead of just 'char '. Modern compilers complain here, so that the signature now gets the const.

This is a minimal part of a series from Dirk Zimoch, more warnings can be removed here and there.