summaryrefslogtreecommitdiff
path: root/apps/plugins/pictureflow/pictureflow.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/pictureflow/pictureflow.c')
-rw-r--r--apps/plugins/pictureflow/pictureflow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/pictureflow/pictureflow.c b/apps/plugins/pictureflow/pictureflow.c
index b12c8e8e04..463f86c394 100644
--- a/apps/plugins/pictureflow/pictureflow.c
+++ b/apps/plugins/pictureflow/pictureflow.c
@@ -1161,7 +1161,7 @@ bool save_pfraw(char* filename, struct bitmap *bm)
1161 struct pfraw_header bmph; 1161 struct pfraw_header bmph;
1162 bmph.width = bm->width; 1162 bmph.width = bm->width;
1163 bmph.height = bm->height; 1163 bmph.height = bm->height;
1164 int fh = rb->creat( filename ); 1164 int fh = rb->creat( filename , 0666);
1165 if( fh < 0 ) return false; 1165 if( fh < 0 ) return false;
1166 rb->write( fh, &bmph, sizeof( struct pfraw_header ) ); 1166 rb->write( fh, &bmph, sizeof( struct pfraw_header ) );
1167 int y; 1167 int y;