Fix signed/unsigned compiler warning.
diff --git a/Modules/audioop.c b/Modules/audioop.c
index 767cae6..42daf9b 100644
--- a/Modules/audioop.c
+++ b/Modules/audioop.c
@@ -1116,7 +1116,7 @@
         outrate /= d;
 
         alloc_size = sizeof(int) * (unsigned)nchannels;
-        if (alloc_size < nchannels) {
+        if (alloc_size < (unsigned)nchannels) {
                 PyErr_SetString(PyExc_MemoryError,
                                 "not enough memory for output buffer");
                 return 0;