summaryrefslogtreecommitdiffstats
path: root/lib/lz4.h
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2016-11-14 15:10:31 (GMT)
committerYann Collet <cyan@fb.com>2016-11-14 15:10:31 (GMT)
commit1b24cc115595f7cd2f8f5f6de0a9d44a70bdf827 (patch)
tree85faf2952179862335e122572e52584625f3b9da /lib/lz4.h
parentecc55d19ba7ce083899459ebbe4b14c109e2bea9 (diff)
downloadlz4-1b24cc115595f7cd2f8f5f6de0a9d44a70bdf827.zip
lz4-1b24cc115595f7cd2f8f5f6de0a9d44a70bdf827.tar.gz
lz4-1b24cc115595f7cd2f8f5f6de0a9d44a70bdf827.tar.bz2
fixed conversion warnings
Diffstat (limited to 'lib/lz4.h')
-rw-r--r--lib/lz4.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/lz4.h b/lib/lz4.h
index 17abd52..d5ac9cb 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -1,7 +1,7 @@
/*
- LZ4 - Fast LZ compression algorithm
- Header File
- Copyright (C) 2011-2016, Yann Collet.
+ * LZ4 - Fast LZ compression algorithm
+ * Header File
+ * Copyright (C) 2011-2016, Yann Collet.
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
@@ -423,7 +423,7 @@ struct LZ4_streamDecode_s {
# elif defined(_MSC_VER)
# define LZ4_DEPRECATED(message) __declspec(deprecated(message))
# else
-# warning "WARNING: You need to implement LZ4_DEPRECATED for this compiler"
+# pragma message("WARNING: You need to implement LZ4_DEPRECATED for this compiler")
# define LZ4_DEPRECATED(message)
# endif
#endif /* LZ4_DISABLE_DEPRECATE_WARNINGS */