summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Cowering <cowering@users.noreply.github.com>2015-10-09 14:57:36 -0500
committer Cowering <cowering@users.noreply.github.com>2015-10-09 14:57:36 -0500
commit94aa0602d548cf2b39c59458adb9e262ec8db8b6 (patch)
treecfa3dc20014199af8898a47fbe3f439d01d3ff1c
parent08992457cb976b245582a94ca013cc40cc5404c1 (diff)
lzma pedantic fixes (nw)
-rw-r--r--3rdparty/lzma/C/CpuArch.c6
-rw-r--r--3rdparty/lzma/C/LzmaDec.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/3rdparty/lzma/C/CpuArch.c b/3rdparty/lzma/C/CpuArch.c
index caf21643cef..ea96bc69762 100644
--- a/3rdparty/lzma/C/CpuArch.c
+++ b/3rdparty/lzma/C/CpuArch.c
@@ -82,7 +82,7 @@ static void MyCPUID(UInt32 function, UInt32 *a, UInt32 *b, UInt32 *c, UInt32 *d)
"=c" (*c) ,
"=d" (*d)
: "0" (function)) ;
- #else // __PIC__
+ #else /* __PIC__ */
__asm__ __volatile__ (
"cpuid"
: "=a" (*a) ,
@@ -90,8 +90,8 @@ static void MyCPUID(UInt32 function, UInt32 *a, UInt32 *b, UInt32 *c, UInt32 *d)
"=c" (*c) ,
"=d" (*d)
: "0" (function)) ;
- #endif // __PIC__
-
+ #endif /* __PIC__ */
+
#endif
#else
diff --git a/3rdparty/lzma/C/LzmaDec.c b/3rdparty/lzma/C/LzmaDec.c
index f7f79bb063d..091ce376336 100644
--- a/3rdparty/lzma/C/LzmaDec.c
+++ b/3rdparty/lzma/C/LzmaDec.c
@@ -967,7 +967,7 @@ SRes LzmaDec_Allocate(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAll
return SZ_OK;
}
-// why isn't there an interface to pass in the properties directly????
+/* why isn't there an interface to pass in the properties directly???? */
SRes LzmaDec_Allocate_MAME(CLzmaDec *p, const CLzmaProps *propNew, ISzAlloc *alloc)
{
SizeT dicBufSize;