Move comment to a separate line
diff --git a/library/ssl_tls.c b/library/ssl_tls.c
index 661263a..87af274 100644
--- a/library/ssl_tls.c
+++ b/library/ssl_tls.c
@@ -5678,7 +5678,9 @@
     /*
      * Prepare base structures
      */
-    ssl->out_buf = NULL; /* Set to NULL in case of an error condition */
+
+    /* Set to NULL in case of an error condition */
+    ssl->out_buf = NULL;
 
     ssl->in_buf = mbedtls_calloc( 1, MBEDTLS_SSL_IN_BUFFER_LEN );
     if( ssl->in_buf == NULL )