Pointless whitespace tidy.

This commit is contained in:
Roger A. Light 2021-10-05 15:20:37 +01:00
parent 7234de7d86
commit a1a190b482
159 changed files with 342 additions and 351 deletions

View File

@ -107,7 +107,6 @@ uninstall :
dist : reallyclean
set -e; for d in ${DISTDIRS}; do $(MAKE) -C $${d} dist; done
mkdir -p dist/mosquitto-${VERSION}
cp -r ${DISTFILES} dist/mosquitto-${VERSION}/
cd dist; tar -zcf mosquitto-${VERSION}.tar.gz mosquitto-${VERSION}/
@ -125,7 +124,6 @@ coverage :
localdocker : reallyclean
set -e; for d in ${DISTDIRS}; do $(MAKE) -C $${d} dist; done
rm -rf dockertmp/
mkdir -p dockertmp/mosquitto-${VERSION}
cp -r ${DISTFILES} dockertmp/mosquitto-${VERSION}/

View File

@ -109,7 +109,6 @@ int cfg_parse_property(struct mosq_config *cfg, int argc, char *argv[], int *idx
(*idx) += 2;
}
switch(cmd){
case CMD_CONNECT:
proplist = &cfg->connect_props;

View File

@ -34,7 +34,6 @@ int alias__add(struct mosquitto *mosq, const char *topic, uint16_t alias)
if(mosq->aliases[i].topic){
return MOSQ_ERR_SUCCESS;
}else{
return MOSQ_ERR_NOMEM;
}
}

View File

@ -121,7 +121,6 @@ int mosquitto_reconnect_delay_set(struct mosquitto *mosq, unsigned int reconnect
mosq->reconnect_exponential_backoff = reconnect_exponential_backoff;
return MOSQ_ERR_SUCCESS;
}

View File

@ -106,7 +106,6 @@ void session_expiry__remove_all(void)
will_delay__remove(context);
context__disconnect(context);
}
}
void session_expiry__check(void)
@ -140,6 +139,5 @@ void session_expiry__check(void)
return;
}
}
}

View File

@ -69,7 +69,6 @@ void will_delay__send_all(void)
context__send_will(item->context);
mosquitto__free(item);
}
}
void will_delay__check(void)
@ -94,7 +93,6 @@ void will_delay__check(void)
return;
}
}
}