diff options
author | Mikhail Burakov <mburakov@mailbox.org> | 2023-04-08 13:49:13 +0200 |
---|---|---|
committer | Mikhail Burakov <mburakov@mailbox.org> | 2023-04-09 10:26:16 +0200 |
commit | b4996b76e99ab602ff87df31d61074cfa72f9f61 (patch) | |
tree | d8ec2684929e1e2b98394d31896b1e048b8adaa3 /capture.h | |
parent | 0fe1d5648f5ee5f1548eb887e96ca149f9e6481c (diff) |
Get rid of auto variables
Diffstat (limited to 'capture.h')
-rw-r--r-- | capture.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,6 +25,6 @@ struct GpuFrame; struct CaptureContext* CaptureContextCreate(struct GpuContext* gpu_context); const struct GpuFrame* CaptureContextGetFrame( struct CaptureContext* capture_context); -void CaptureContextDestroy(struct CaptureContext** capture_context); +void CaptureContextDestroy(struct CaptureContext* capture_context); #endif // STREAMER_CAPTURE_H_ |