aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/fingerprint.c2
-rw-r--r--lib/fingerprint.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/fingerprint.c b/lib/fingerprint.c
index e55de9c6da3..2cc1973428f 100644
--- a/lib/fingerprint.c
+++ b/lib/fingerprint.c
@@ -29,7 +29,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
29 by a fingerprint of the temporary Emacs executable that was built 29 by a fingerprint of the temporary Emacs executable that was built
30 along the way. */ 30 along the way. */
31 31
32unsigned char const fingerprint[] = 32volatile unsigned char fingerprint[] =
33 { 33 {
34 0xDE, 34 0xDE,
35 0x86, 35 0x86,
diff --git a/lib/fingerprint.h b/lib/fingerprint.h
index 0b195fd0ca7..ba2e740cd9e 100644
--- a/lib/fingerprint.h
+++ b/lib/fingerprint.h
@@ -24,6 +24,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
24 Emacs. This way, we have a unique value that we can use to pair 24 Emacs. This way, we have a unique value that we can use to pair
25 data files (like a portable dump image) with a specific build of 25 data files (like a portable dump image) with a specific build of
26 Emacs. */ 26 Emacs. */
27extern unsigned char const fingerprint[32]; 27extern volatile unsigned char fingerprint[32];
28 28
29#endif 29#endif