Remove superfluous whitespace

Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com>
pull/104/head
Philipp Zabel 2023-07-27 08:14:07 +02:00 committed by Andri Yngvason
parent bc3a47a654
commit 5b4141ac1d
3 changed files with 3 additions and 3 deletions

View File

@ -658,7 +658,7 @@ bool crypto_rsa_priv_key_load(struct crypto_rsa_priv_key* priv,
void crypto_rsa_pub_key_modulus(const struct crypto_rsa_pub_key* key,
uint8_t* dst, size_t dst_size)
{
crypto_export(dst, dst_size, key->key.n);
crypto_export(dst, dst_size, key->key.n);
}
void crypto_rsa_pub_key_exponent(const struct crypto_rsa_pub_key* key,

View File

@ -165,7 +165,7 @@ void nvnc_fb_pool_release(struct nvnc_fb_pool* self, struct nvnc_fb* fb)
}
nvnc_fb_ref(fb);
struct fbq_item* item = calloc(1, sizeof(*item));
assert(item);
item->fb = fb;

View File

@ -328,7 +328,7 @@ static int h264_encoder__init_hw_frames_context(struct h264_encoder* self)
c->sw_format = drm_to_av_pixel_format(self->format);
c->width = self->width;
c->height = self->height;
if (av_hwframe_ctx_init(self->hw_frames_ctx) < 0)
av_buffer_unref(&self->hw_frames_ctx);