]> sigrok.org Git - libsigrok.git/commitdiff
scpi: Minor style nits
authorGerhard Sittig <redacted>
Fri, 30 Dec 2016 12:11:59 +0000 (13:11 +0100)
committerUwe Hermann <redacted>
Sat, 7 Jan 2017 14:51:47 +0000 (15:51 +0100)
Drop an initial assignment to a variable which never takes effect.
Add braces around the body of a more complex if block. Separate routines
from each other by exactly one empty line.

src/scpi/scpi.c

index e4346e5db6d3fef19360e24367f291dd45f7b789..222201ce279b5ca8fb3950cb6c7060d66154134a 100644 (file)
@@ -419,12 +419,13 @@ SR_PRIV int sr_scpi_get_data(struct sr_scpi_dev_inst *scpi,
        GString *response;
        gint64 laststart;
        unsigned int elapsed_ms;
-       unsigned int offset = 0;
+       unsigned int offset;
        int space;
 
-       if (command)
+       if (command) {
                if (sr_scpi_send(scpi, command) != SR_OK)
                        return SR_ERR;
+       }
 
        if (sr_scpi_read_begin(scpi) != SR_OK)
                return SR_ERR;
@@ -723,6 +724,7 @@ SR_PRIV int sr_scpi_get_uint8v(struct sr_scpi_dev_inst *scpi,
 
        return ret;
 }
+
 /**
  * Send a SCPI command, read the reply, parse it as binary data with a
  * "definite length block" header and store the as an result in scpi_response.
@@ -796,7 +798,6 @@ SR_PRIV int sr_scpi_get_block(struct sr_scpi_dev_inst *scpi,
        return ret;
 }
 
-
 /**
  * Send the *IDN? SCPI command, receive the reply, parse it and store the
  * reply as a sr_scpi_hw_info structure in the supplied scpi_response pointer.