summaryrefslogtreecommitdiff
path: root/lib/osx_file_icon.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/osx_file_icon.h')
-rw-r--r--lib/osx_file_icon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/osx_file_icon.h b/lib/osx_file_icon.h
index 1d57a00e..e9b17988 100644
--- a/lib/osx_file_icon.h
+++ b/lib/osx_file_icon.h
@@ -14,7 +14,7 @@ namespace osx
{
struct ImageData
{
- ImageData(int w, int h) : width(w), height(h), rgb(w * h * 3), alpha(w * h) {}
+ ImageData(int w, int h) : width(w), height(h), rgb(w* h * 3), alpha(w* h) {}
ImageData(ImageData&& tmp) : width(tmp.width), height(tmp.height) { rgb.swap(tmp.rgb); alpha.swap(tmp.alpha); }
const int width;
bgstack15