diff options
| author | 2025-04-30 17:42:08 -0400 | |
|---|---|---|
| committer | 2025-04-30 17:42:08 -0400 | |
| commit | 2ce402fa41508d45e2d30b56502c00ef92efff7b (patch) | |
| tree | 63f4701b292dfcbe08af1aeb3a5942c1973c45ba /src/liana/handlers | |
| parent | af54e6510f2f701db3b3a533514076c04cea4c66 (diff) | |
| download | camu-2ce402fa41508d45e2d30b56502c00ef92efff7b.tar.gz camu-2ce402fa41508d45e2d30b56502c00ef92efff7b.tar.bz2 camu-2ce402fa41508d45e2d30b56502c00ef92efff7b.zip | |
Refactor the way cache backing sizes are tracked
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/liana/handlers')
| -rw-r--r-- | src/liana/handlers/codec_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liana/handlers/codec_client.c b/src/liana/handlers/codec_client.c index 39bb2d1..fd2569b 100644 --- a/src/liana/handlers/codec_client.c +++ b/src/liana/handlers/codec_client.c @@ -141,7 +141,7 @@ static bool codec_client_handle_packet(struct lia_client_handler *handler, struc packet->rindex = rindex; if (!success) { - // Forcing in EOF on an error is not necessary but should exhibit less erratic behavior sink-side. + // Forcing in an EOF on an error is not necessary but behaves better in the sink. codec->handler.callback(codec->handler.userdata, LIANA_CLIENT_EOF, codec->handler.stream, NULL); return false; } |