]> git.saurik.com Git - apple/boot.git/blobdiff - i386/libsa/zalloc.c
boot-122.tar.gz
[apple/boot.git] / i386 / libsa / zalloc.c
index 98c471970425507feb505d1a9329d4079b167893..51162eb0339845b8b0935e7611008d3a35b8f9b8 100644 (file)
@@ -1,12 +1,12 @@
 /*
- * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 1999-2003 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
- * Portions Copyright (c) 1999 Apple Computer, Inc.  All Rights
+ * Portions Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights
  * Reserved.  This file contains Original Code and/or Modifications of
  * Original Code as defined in and that are subject to the Apple Public
- * Source License Version 1.1 (the "License").  You may not use this file
+ * Source License Version 2.0 (the "License").  You may not use this file
  * except in compliance with the License.  Please obtain a copy of the
  * License at http://www.apple.com/publicsource and read it before using
  * this file.
@@ -74,7 +74,7 @@ void malloc_init(char * start, int size, int nodes, void (*malloc_err_fn)(char *
        zalloc_base         = start ? start : (char *)ZALLOC_ADDR;
        totalNodes          = nodes ? nodes : ZALLOC_NODES;
        zalloced            = (zmem *) zalloc_base;
-       zavailable          = (zmem *) zalloc_base + sizeof(zmem) * totalNodes;;
+       zavailable          = (zmem *) zalloc_base + sizeof(zmem) * totalNodes;
        zavailable[0].start = (char *)zavailable + sizeof(zmem) * totalNodes;
         if (size == 0) size = ZALLOC_LEN;
        zavailable[0].size  = size - (zavailable[0].start - zalloc_base);