]> git.saurik.com Git - apple/ld64.git/blobdiff - unit-tests/test-cases/operator-new/main.cxx
ld64-96.5.tar.gz
[apple/ld64.git] / unit-tests / test-cases / operator-new / main.cxx
old mode 100755 (executable)
new mode 100644 (file)
index 3c99e35..b5d3272
@@ -36,7 +36,7 @@
 #if OP_NEW
 void* operator new(size_t s) throw (std::bad_alloc)
 {
-  return malloc(s);;
+  return malloc(s);
 }
 #endif