summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pjctl.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/pjctl.c b/src/pjctl.c
index ae9af14..06a52d5 100644
--- a/src/pjctl.c
+++ b/src/pjctl.c
@@ -49,7 +49,8 @@ struct pjctl;
struct queue_command {
char *command;
- void (*response_func)(struct pjctl *pjctl, struct queue_command *cmd, char *op, char *param);
+ void (*response_func)(struct pjctl *pjctl, struct queue_command *cmd,
+ char *op, char *param);
char *prefix;
struct queue_command *prev, *next;
};
@@ -137,7 +138,8 @@ static int
handle_setup(struct pjctl *pjctl, char *data, int len)
{
if (data[PJLINK_PARAMETER] == '1') {
- fprintf(stderr, "error: pjlink encryption is not implemented.\n");
+ fprintf(stderr,
+ "error: pjlink encryption is not implemented.\n");
return -1;
}
@@ -322,7 +324,8 @@ source(struct pjctl *pjctl, char **argv, int argc)
num = argv[1][offset];
if (num < '1' || num > '9') {
- fprintf(stderr, "warning: missing source number, defaulting to 1\n");
+ fprintf(stderr,
+ "warning: missing source number, defaulting to 1\n");
num = '1';
}