summaryrefslogtreecommitdiff
path: root/recordmydesktop/src/rmd_cache_frame.c
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2020-07-11 15:36:20 -0700
committerVito Caputo <vcaputo@pengaru.com>2020-07-11 16:17:32 -0700
commit522d52b58f6a8c29efa915bb1b119f49212e89ee (patch)
treeceec0dad2ac6532e64a3348f9ae1cd6516601597 /recordmydesktop/src/rmd_cache_frame.c
parenteb1a698e750cbb8c7503c93e291942986364aa31 (diff)
*: more formatting cleanups
Nothing functionally changed
Diffstat (limited to 'recordmydesktop/src/rmd_cache_frame.c')
-rw-r--r--recordmydesktop/src/rmd_cache_frame.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/recordmydesktop/src/rmd_cache_frame.c b/recordmydesktop/src/rmd_cache_frame.c
index 6014aa0..7b8a2f3 100644
--- a/recordmydesktop/src/rmd_cache_frame.c
+++ b/recordmydesktop/src/rmd_cache_frame.c
@@ -65,7 +65,7 @@ static int rmdFlushBlock(
if (ucfp == NULL)
gzwrite(fp, (void *)out_buffer, out_buffer_bytes);
else
- fwrite((void *)out_buffer, 1, out_buffer_bytes,ucfp);
+ fwrite((void *)out_buffer, 1, out_buffer_bytes, ucfp);
bytes_written = out_buffer_bytes;
out_buffer_bytes = 0;
@@ -256,8 +256,8 @@ void *rmdCacheImageBuffer(ProgData *pdata) {
if (nbytes > CACHE_FILE_SIZE_LIMIT) {
if (rmdSwapCacheFilesWrite(pdata->cache_data->imgdata, nth_cache, &fp, &ucfp)) {
- fprintf(stderr,"New cache file could not be created.\n"
- "Ending recording...\n");
+ fprintf(stderr, "New cache file could not be created.\n"
+ "Ending recording...\n");
fflush(stderr);
raise(SIGINT); //if for some reason we cannot make a new file
//we have to stop. If we are out of space,
© All Rights Reserved