pcsound: Make pcsound_driver_s name member const

This commit is contained in:
Turo Lamminen 2018-03-31 15:08:09 +03:00
parent 1ec2d4d862
commit 26e758810f

View file

@ -28,7 +28,7 @@ typedef void (*pcsound_shutdown_func)(void);
struct pcsound_driver_s
{
char *name;
const char *name;
pcsound_init_func init_func;
pcsound_shutdown_func shutdown_func;
};