CLEANUP: htx: Make http_get_stline take a `const struct`

Nothing is being modified there, so this can be `const`.
diff --git a/src/http_htx.c b/src/http_htx.c
index fcfadce..a7951c0 100644
--- a/src/http_htx.c
+++ b/src/http_htx.c
@@ -60,7 +60,7 @@
  * if the start-line is undefined (first == -1). Otherwise, it returns the
  * pointer on the htx_sl structure.
  */
-struct htx_sl *http_get_stline(struct htx *htx)
+struct htx_sl *http_get_stline(const struct htx *htx)
 {
 	struct htx_blk *blk;