telnet: cosmetic coding style changes
diff --git a/openbsc/src/telnet_interface.c b/openbsc/src/telnet_interface.c
index c2be1b8..853cdf9 100644
--- a/openbsc/src/telnet_interface.c
+++ b/openbsc/src/telnet_interface.c
@@ -53,7 +53,8 @@
 	.priv_nr    = 0,
 };
 
-void telnet_init(struct gsm_network *network, int port) {
+void telnet_init(struct gsm_network *network, int port)
+{
 	struct sockaddr_in sock_addr;
 	int fd, on = 1;
 
@@ -93,7 +94,8 @@
 
 extern const char *openbsc_copyright;
 
-static void print_welcome(int fd) {
+static void print_welcome(int fd)
+{
 	int ret;
 	static char *msg =
 		"Welcome to the OpenBSC Control interface\n";
@@ -102,7 +104,8 @@
 	ret = write(fd, openbsc_copyright, strlen(openbsc_copyright));
 }
 
-int telnet_close_client(struct bsc_fd *fd) {
+int telnet_close_client(struct bsc_fd *fd)
+{
 	struct telnet_connection *conn = (struct telnet_connection*)fd->data;
 
 	close(fd->fd);
@@ -141,7 +144,8 @@
 	return rc;
 }
 
-static int telnet_new_connection(struct bsc_fd *fd, unsigned int what) {
+static int telnet_new_connection(struct bsc_fd *fd, unsigned int what)
+{
 	struct telnet_connection *connection;
 	struct sockaddr_in sockaddr;
 	socklen_t len = sizeof(sockaddr);