diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2017-11-08 19:19:00 -0500 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2017-11-08 19:19:00 -0500 |
commit | 7f2d138a81387bb36e1c1bcd5aa8b96381489458 (patch) | |
tree | 632d4911ea2347a1246ae8ef91905afcbf107d30 /backend_mitsup95d.c | |
parent | 1d7ccc1a82ec44e5132098dafa5ccfb41ff26c6e (diff) | |
download | selphy_print-7f2d138a81387bb36e1c1bcd5aa8b96381489458.tar.gz selphy_print-7f2d138a81387bb36e1c1bcd5aa8b96381489458.tar.bz2 selphy_print-7f2d138a81387bb36e1c1bcd5aa8b96381489458.zip |
all: Clean up the manufacturer override field in the devices.
Diffstat (limited to 'backend_mitsup95d.c')
-rw-r--r-- | backend_mitsup95d.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backend_mitsup95d.c b/backend_mitsup95d.c index bc78035..1e5b95b 100644 --- a/backend_mitsup95d.c +++ b/backend_mitsup95d.c @@ -491,9 +491,9 @@ struct dyesub_backend mitsup95d_backend = { .read_parse = mitsup95d_read_parse, .main_loop = mitsup95d_main_loop, .devices = { - { USB_VID_MITSU, USB_PID_MITSU_P93D, P_MITSU_P93D, ""}, - { USB_VID_MITSU, USB_PID_MITSU_P95D, P_MITSU_P95D, ""}, - { 0, 0, 0, ""} + { USB_VID_MITSU, USB_PID_MITSU_P93D, P_MITSU_P93D, NULL}, + { USB_VID_MITSU, USB_PID_MITSU_P95D, P_MITSU_P95D, NULL}, + { 0, 0, 0, NULL} } }; |