]> sigrok.org Git - sigrok-cli.git/blobdiff - options.c
Pass unitsize to srd_session_send() directly.
[sigrok-cli.git] / options.c
index 9a0bce6859306562c849a722f871577557663d07..6a97595740bfc51e2fa44d176982df2da3a3ced4 100644 (file)
--- a/options.c
+++ b/options.c
@@ -17,8 +17,8 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#include "sigrok-cli.h"
 #include <glib.h>
 #include <glib.h>
+#include "sigrok-cli.h"
 
 gboolean opt_version = FALSE;
 gint opt_loglevel = SR_LOG_WARN; /* Show errors+warnings by default. */
 
 gboolean opt_version = FALSE;
 gint opt_loglevel = SR_LOG_WARN; /* Show errors+warnings by default. */
@@ -49,8 +49,10 @@ gchar *opt_continuous = NULL;
 gchar *opt_get = NULL;
 gchar *opt_set = NULL;
 
 gchar *opt_get = NULL;
 gchar *opt_set = NULL;
 
-/* defines a callback function that generates
-   an error if an option occurs twice */
+/*
+ * Defines a callback function that generates an error if an
+ * option occurs twice.
+ */
 #define CHECK_ONCE(option) \
 static gboolean check_ ## option                                          \
        (const gchar *option_name, const gchar *value,                    \
 #define CHECK_ONCE(option) \
 static gboolean check_ ## option                                          \
        (const gchar *option_name, const gchar *value,                    \
@@ -151,8 +153,10 @@ static const GOptionEntry optargs[] = {
        {NULL, 0, 0, 0, NULL, NULL, NULL}
 };
 
        {NULL, 0, 0, 0, NULL, NULL, NULL}
 };
 
-/* Parses the command line and sets all the 'opt_...' variables.
-   Returns zero on success, non-zero otherwise. */
+/*
+ * Parses the command line and sets all the 'opt_...' variables.
+ * Returns zero on success, non-zero otherwise.
+ */
 int parse_options(int argc, char **argv)
 {
        GError *error = NULL;
 int parse_options(int argc, char **argv)
 {
        GError *error = NULL;