fix compiler warnings

This commit is contained in:
Milanka Ringwald 2018-07-03 10:38:57 +02:00
parent 784eb10cc7
commit c006cd1902
4 changed files with 4 additions and 4 deletions

View File

@ -581,4 +581,4 @@ uint8_t is_avdtp_remote_seid_registered(avdtp_stream_endpoint_t * stream_endpoin
}
#endif
#endif // __AVDTP_H
#endif // __AVDTP_H

View File

@ -180,4 +180,4 @@ uint8_t avdtp_sink_delay_report(uint16_t avdtp_cid, uint8_t local_seid, uint16_t
}
#endif
#endif // __AVDTP_SINK_H
#endif // __AVDTP_SINK_H

View File

@ -158,4 +158,4 @@ avdtp_stream_endpoint_t * avdtp_source_create_stream_endpoint(avdtp_sep_type_t s
}
#endif
#endif // __AVDTP_SOURCE_H
#endif // __AVDTP_SOURCE_H

View File

@ -89,7 +89,7 @@ void hci_dump_packet(uint8_t packet_type, uint8_t in, uint8_t *packet, uint16_t
*/
void hci_dump_log(int log_level, const char * format, ...)
#ifdef __GNUC__
__attribute__ ((format (__printf__, 2, 3)));
__attribute__ ((format (__printf__, 2, 3)))
#endif
;