aom: debug_util.h: fix prototype typo

From a3962ef9a6f46f5b322d66c65461e3feb23526b0 Mon Sep 17 00:00:00 2001
From: James Zern <[EMAIL REDACTED]>
Date: Thu, 8 Aug 2024 12:29:54 -0700
Subject: [PATCH] debug_util.h: fix prototype typo

aom_bitstream_queue_get_frame_writee ->
aom_bitstream_queue_set_frame_write

This fixes a -Wmissing-prototypes warning.

Bug: aomedia:42302428
Change-Id: I9a5b7d6b2405269c9597ba877ee132821675d6a3
---
 aom_util/debug_util.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/aom_util/debug_util.h b/aom_util/debug_util.h
index 6a2d318a7d..2166f1215a 100644
--- a/aom_util/debug_util.h
+++ b/aom_util/debug_util.h
@@ -21,7 +21,7 @@ extern "C" {
 #endif
 
 void aom_bitstream_queue_set_frame_write(int frame_idx);
-int aom_bitstream_queue_get_frame_writee(void);
+int aom_bitstream_queue_get_frame_write(void);
 void aom_bitstream_queue_set_frame_read(int frame_idx);
 int aom_bitstream_queue_get_frame_read(void);