diff options
author | Stephane Carrez <stcarrez@nerim.fr> | 2002-08-13 09:01:16 +0000 |
---|---|---|
committer | Stephane Carrez <stcarrez@nerim.fr> | 2002-08-13 09:01:16 +0000 |
commit | 85dd15bfc5c8a46ef46e748b0ef89891c9b9c50d (patch) | |
tree | 509ad635ce939fe54929361533164817dc7aa981 /sim/m68hc11 | |
parent | 261d6729f1e2d7439f21ad26e8d7bc2810d6372d (diff) | |
download | gdb-85dd15bfc5c8a46ef46e748b0ef89891c9b9c50d.tar.gz |
* dv-m68hc11eepr.c (struct m68hc11eepr ): Use const char* for filename.
Diffstat (limited to 'sim/m68hc11')
-rw-r--r-- | sim/m68hc11/ChangeLog | 4 | ||||
-rw-r--r-- | sim/m68hc11/dv-m68hc11eepr.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sim/m68hc11/ChangeLog b/sim/m68hc11/ChangeLog index fc85e602198..abe5f55c533 100644 --- a/sim/m68hc11/ChangeLog +++ b/sim/m68hc11/ChangeLog @@ -1,3 +1,7 @@ +2002-08-13 Stephane Carrez <stcarrez@nerim.fr> + + * dv-m68hc11eepr.c (struct m68hc11eepr ): Use const char* for filename. + 2002-08-13 Marko Kohtala <marko.kohtala@luukku.com> * interp.c (sim_prepare_for_program): Look up the image for the diff --git a/sim/m68hc11/dv-m68hc11eepr.c b/sim/m68hc11/dv-m68hc11eepr.c index fb99068fe87..a06eb442050 100644 --- a/sim/m68hc11/dv-m68hc11eepr.c +++ b/sim/m68hc11/dv-m68hc11eepr.c @@ -1,6 +1,6 @@ /* dv-m68hc11eepr.c -- Simulation of the 68HC11 Internal EEPROM. - Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. - Written by Stephane Carrez (stcarrez@worldnet.fr) + Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc. + Written by Stephane Carrez (stcarrez@nerim.fr) (From a driver model Contributed by Cygnus Solutions.) This program is free software; you can redistribute it and/or modify @@ -119,7 +119,7 @@ struct m68hc11eepr /* Minimum time in CPU cycles for programming the EEPROM. */ unsigned long eeprom_min_cycles; - char* file_name; + const char* file_name; }; |