aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/get_current_monitor_profile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/get_current_monitor_profile.cpp')
-rw-r--r--tools/get_current_monitor_profile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/get_current_monitor_profile.cpp b/tools/get_current_monitor_profile.cpp
index 55a96d56dd..096ecd01ce 100644
--- a/tools/get_current_monitor_profile.cpp
+++ b/tools/get_current_monitor_profile.cpp
@@ -19,10 +19,10 @@ int main(int argc, char** argv) {
CFDataRef dataRef = CGColorSpaceCopyICCProfile(cs);
const uint8_t* data = CFDataGetBytePtr(dataRef);
size_t size = CFDataGetLength(dataRef);
-
+
SkFILEWStream file("monitor_0.icc");
file.write(data, size);
-
+
CFRelease(cs);
CFRelease(dataRef);
return 0;