$OpenBSD: patch-stream_stream_h,v 1.2 2021/12/07 20:03:57 sthen Exp $

Index: stream/stream.h
--- stream/stream.h.orig
+++ stream/stream.h
@@ -319,11 +319,11 @@ static inline int64_t stream_tell(stream_t *s)
 static inline int stream_seek(stream_t *s, int64_t pos)
 {
 
-  mp_dbg(MSGT_DEMUX, MSGL_DBG3, "seek to 0x%"PRIX64"\n", pos);
+  mp_dbg(MSGT_DEMUX, MSGL_DBG3, "seek to 0x%" PRIX64 "\n", pos);
 
   if (pos < 0) {
     mp_msg(MSGT_DEMUX, MSGL_ERR,
-           "Invalid seek to negative position %"PRIx64"!\n", pos);
+           "Invalid seek to negative position %" PRIx64 "!\n", pos);
     pos = 0;
   }
   if (s->buf_len == 0 && s->pos == pos)
