atusb/fw/flash.c (flash_ops): fix placement of "const"

This commit is contained in:
Werner Almesberger
2015-05-29 09:43:02 -03:00
parent 9e9f65992c
commit 37a4f00e41
+1 -1
View File
@@ -85,7 +85,7 @@ static uint16_t flash_read(uint8_t *buf, uint16_t size)
}
const static struct dfu_flash_ops flash_ops = {
static const struct dfu_flash_ops flash_ops = {
.start = flash_start,
.can_write = flash_can_write,
.write = flash_write,