diff options
| author | Stefan Monnier | 2019-07-09 16:13:25 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2019-07-09 16:13:25 -0400 |
| commit | 3078e6d2fb9b2acf785be11de465f6410acaa5fc (patch) | |
| tree | b64e4e1d395652888af94a38660654711f3e7e03 /lib | |
| parent | 2391a8e24f2ea1f80661ed29fcc64c02c7d8d95c (diff) | |
| parent | 412139f1be7415791a0d964f95f319c86eded426 (diff) | |
| download | emacs-3078e6d2fb9b2acf785be11de465f6410acaa5fc.tar.gz emacs-3078e6d2fb9b2acf785be11de465f6410acaa5fc.zip | |
Merge branch 'master' of git+ssh://git.sv.gnu.org/srv/git/emacs into trunk
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/fingerprint.c | 2 | ||||
| -rw-r--r-- | lib/fingerprint.h | 2 |
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 | ||
| 32 | unsigned char const fingerprint[] = | 32 | volatile 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. */ |
| 27 | extern unsigned char const fingerprint[32]; | 27 | extern volatile unsigned char fingerprint[32]; |
| 28 | 28 | ||
| 29 | #endif | 29 | #endif |