Trivial changes: white space etc.

clang-format and removing whitespace at the ends
of lines.

Signed-off-by: Dan Cross <patchdev@fat-dragon.org>
This commit is contained in:
Dan Cross 2018-10-19 13:58:34 +00:00 committed by Andrew Pamment
parent 714fd09742
commit 2f79c4a590
3 changed files with 7 additions and 7 deletions

View File

@ -1,9 +1,9 @@
CC:= cc
CFLAGS:= -std=gnu99 -DDISABLE_MQTT=1
LIBS:= -lm -lssl -lcrypto -liconv -lsqlite3 -lnetwork -lbsd -lssh
EXTRAOBJS:= strlcpy/strlcpy.o strlcpy/strlcat.o
EXTRAOBJS:= strlcpy/strlcpy.o strlcpy/strlcat.o
LIBTOOLIZE:= libtoolize
LIBTOOLIZE:= libtoolize
DEPS_LUA_TARGET:= haiku
DEPS_JAMLIB_MAKEFILE:= Makefile.linux

View File

@ -191,8 +191,8 @@ char *www_msgs_messagelist(struct user_record *user, int conference, int area, i
stralloc_cats(&page, "</div>\n");
if (skip + 50 <= mhrs->msg_count) {
snprintf(buffer, sizeof buffer,
"<div class=\"msg-summary-next\"><a href=\"%smsgs/%d/%d/?skip=%d\">Next</a></div>\n",
conf.www_url, conference, area, skip + 50);
"<div class=\"msg-summary-next\"><a href=\"%smsgs/%d/%d/?skip=%d\">Next</a></div>\n",
conf.www_url, conference, area, skip + 50);
stralloc_cats(&page, buffer);
}