]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/fs/xfs.c (grub_xfs_read_block): Make keys a const pointer.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Wed, 5 Sep 2012 06:45:07 +0000 (08:45 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Wed, 5 Sep 2012 06:45:07 +0000 (08:45 +0200)
ChangeLog
grub-core/fs/xfs.c

index fbef0c3ea86a8d8b39e950d77f689d5e87ff6632..0cf6bea9a0f657c9a7815fb991254393378b5ee5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-09-05  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * grub-core/fs/xfs.c (grub_xfs_read_block): Make keys a const pointer.
+
 2012-09-04  Colin Watson  <cjwatson@ubuntu.com>
 
        * Makefile.am (EXTRA_DIST): Add linguas.sh.  It's only strictly
index 2c6b00c2af197224001c2aa26538f831e25af958..1ed048fd3d2b2a6e799050991f2028cba4de0f75 100644 (file)
@@ -285,7 +285,7 @@ grub_xfs_read_block (grub_fshelp_node_t node, grub_disk_addr_t fileblock)
 
   if (node->inode.format == XFS_INODE_FORMAT_BTREE)
     {
-      grub_uint64_t *keys;
+      const grub_uint64_t *keys;
       int recoffset;
 
       leaf = grub_malloc (node->data->bsize);