X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fted.c;h=186cf2b4bb1399b32fcfcbf3f585fe3b6539a715;hb=9a68f99cfe1d2f3013534b3018068f808a6823c4;hp=bf519bbee53ec38c34ddae669c707523e2fbf617;hpb=a05485da75ec42a9aa38354e0d0364885b1ecad9;p=collectd.git diff --git a/src/ted.c b/src/ted.c index bf519bbe..186cf2b4 100644 --- a/src/ted.c +++ b/src/ted.c @@ -70,7 +70,7 @@ static int ted_read_value(double *ret_power, double *ret_voltage) { unsigned char receive_buffer[300]; unsigned char package_buffer[300]; - char pkt_request[1] = {0xAA}; + unsigned char pkt_request[1] = {0xAA}; int package_buffer_pos; fd_set input; @@ -104,7 +104,6 @@ static int ted_read_value(double *ret_power, double *ret_voltage) /* Loop until we find the end of the package */ end_flag = 0; - escape_flag = 0; package_buffer_pos = 0; while (end_flag == 0) { @@ -148,7 +147,7 @@ static int ted_read_value(double *ret_power, double *ret_voltage) WARNING ("ted plugin: Received EOF from file descriptor."); return (-1); } - else if (receive_buffer_length > sizeof (receive_buffer)) + else if (((size_t) receive_buffer_length) > sizeof (receive_buffer)) { ERROR ("ted plugin: read(2) returned invalid value %zi.", receive_buffer_length); @@ -264,7 +263,7 @@ static int ted_open_device (void) return (0); } /* int ted_open_device */ -static void ted_submit (char *type, double value) +static void ted_submit (const char *type, double value) { value_t values[1]; value_list_t vl = VALUE_LIST_INIT;