Ensure all parameters have names in header files.
[tinc] / src / device.h
index bf502e0..6bfc44d 100644 (file)
@@ -31,8 +31,8 @@ extern char *iface;
 typedef struct devops_t {
        bool (*setup)(void);
        void (*close)(void);
-       bool (*read)(struct vpn_packet_t *);
-       bool (*write)(struct vpn_packet_t *);
+       bool (*read)(struct vpn_packet_t *packet);
+       bool (*write)(struct vpn_packet_t *packet);
        void (*dump_stats)(void);
 } devops_t;