Skip to content
Snippets Groups Projects
Commit 262a73ee authored by Jon Bringhurst's avatar Jon Bringhurst
Browse files

Replace GNU old-style field designators with proper C (obsolete since 1993).

parent e40600c3
No related branches found
No related tags found
No related merge requests found
...@@ -136,8 +136,8 @@ static bool _local_file_writable(eio_obj_t *); ...@@ -136,8 +136,8 @@ static bool _local_file_writable(eio_obj_t *);
static int _local_file_write(eio_obj_t *, List); static int _local_file_write(eio_obj_t *, List);
struct io_operations local_file_ops = { struct io_operations local_file_ops = {
writable: &_local_file_writable, .writable = &_local_file_writable,
handle_write: &_local_file_write, .handle_write = &_local_file_write,
}; };
...@@ -149,9 +149,9 @@ static int _task_write(eio_obj_t *, List); ...@@ -149,9 +149,9 @@ static int _task_write(eio_obj_t *, List);
static int _task_write_error(eio_obj_t *obj, List objs); static int _task_write_error(eio_obj_t *obj, List objs);
struct io_operations task_write_ops = { struct io_operations task_write_ops = {
writable: &_task_writable, .writable = &_task_writable,
handle_write: &_task_write, .handle_write = &_task_write,
handle_error: &_task_write_error, .handle_error = &_task_write_error,
}; };
struct task_write_info { struct task_write_info {
...@@ -173,8 +173,8 @@ static bool _task_readable(eio_obj_t *); ...@@ -173,8 +173,8 @@ static bool _task_readable(eio_obj_t *);
static int _task_read(eio_obj_t *, List); static int _task_read(eio_obj_t *, List);
struct io_operations task_read_ops = { struct io_operations task_read_ops = {
readable: &_task_readable, .readable = &_task_readable,
handle_read: &_task_read, .handle_read = &_task_read,
}; };
struct task_read_info { struct task_read_info {
......
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