Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / libpspp / alloc.c
index 2cd82d6a6ea50b99d00862f108196b8ac2c9eaaa..916a42e4a2036f92d4f0b224968fd5b32108f36a 100644 (file)
@@ -25,7 +25,7 @@
    Returns a null pointer if the memory cannot be obtained,
    including the case where N * S overflows the range of size_t. */
 void *
-nmalloc (size_t n, size_t s) 
+nmalloc (size_t n, size_t s)
 {
   return !xalloc_oversized (n, s) ? malloc (n * s) : NULL;
 }