Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
HUGO: Fix s_bootCypherLen *for real*
  • Loading branch information
fingolfin committed Mar 29, 2011
1 parent 3be6125 commit 7c16f9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/hugo/file.cpp
Expand Up @@ -48,8 +48,8 @@
namespace Hugo {

namespace {
static const char *s_bootCypher = "Copyright 1992, David P Gray, Gray Design Associates";
static const int s_bootCypherLen = sizeof(s_bootCypher) - 2;
static const char s_bootCypher[] = "Copyright 1992, David P Gray, Gray Design Associates";
static const int s_bootCypherLen = sizeof(s_bootCypher) - 1;
}


Expand Down

0 comments on commit 7c16f9a

Please sign in to comment.