]> git.eshelyaron.com Git - emacs.git/commitdiff
(long_to_cons): Fix type of top.
authorAndreas Schwab <schwab@suse.de>
Wed, 12 Mar 2003 23:46:41 +0000 (23:46 +0000)
committerAndreas Schwab <schwab@suse.de>
Wed, 12 Mar 2003 23:46:41 +0000 (23:46 +0000)
src/data.c

index f3157b333645e104bf2044613a2efa8c72626415..2c7442c61aa91ac253a3863f4a8d8f2dda106267 100644 (file)
@@ -1,5 +1,5 @@
 /* Primitive operations on Lisp data types for GNU Emacs Lisp interpreter.
-   Copyright (C) 1985,86,88,93,94,95,97,98,99, 2000, 2001
+   Copyright (C) 1985,86,88,93,94,95,97,98,99, 2000, 2001, 2003
    Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
@@ -2245,7 +2245,7 @@ Lisp_Object
 long_to_cons (i)
      unsigned long i;
 {
-  unsigned int top = i >> 16;
+  unsigned long top = i >> 16;
   unsigned int bot = i & 0xFFFF;
   if (top == 0)
     return make_number (bot);