aboutsummaryrefslogtreecommitdiffstats
path: root/cups/testarray.c
diff options
context:
space:
mode:
authorBryan Ferris <bferris@google.com>2019-06-21 10:49:26 -0700
committerHuizi Yang <yanghuiz@google.com>2019-10-08 14:05:51 -0700
commit2ccb2eaf277e9f184c8225cd80d341d1e70a6d68 (patch)
treeaedb3a476f3355dd099cf82d961ee2f2a67d51d0 /cups/testarray.c
parent05b0b189a65a1d52cbfa5ae6d35e2a16b201e706 (diff)
downloadplatform_external_libcups-security-pi-release.tar.gz
platform_external_libcups-security-pi-release.tar.bz2
platform_external_libcups-security-pi-release.zip
Bug: 111210196 Test: adb shell am instrument -w android.print.cts/androidx.test.runner.AndroidJUnitRunner Change-Id: I5170f3629dabbfa3af5e5af037261986e7bfe2f6 Merged-In: Iefafb654fcb0764bba0f17731e469db595a6b36e (cherry picked from commit 5fb2ccdf3347f61b570c8e340f90db5cd28b29bc)
Diffstat (limited to 'cups/testarray.c')
-rw-r--r--cups/testarray.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cups/testarray.c b/cups/testarray.c
index 6164ffc6..892e3250 100644
--- a/cups/testarray.c
+++ b/cups/testarray.c
@@ -494,7 +494,7 @@ main(void)
* 'get_seconds()' - Get the current time in seconds...
*/
-#ifdef WIN32
+#ifdef _WIN32
# include <windows.h>
@@ -515,7 +515,7 @@ get_seconds(void)
gettimeofday(&curtime, NULL);
return (curtime.tv_sec + 0.000001 * curtime.tv_usec);
}
-#endif /* WIN32 */
+#endif /* _WIN32 */
/*