j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
Author: blueswirl Date: 2009-08-02 12:58:33 +0200 (Sun, 02 Aug 2009) New Revision: 518
Modified: trunk/openbios-devel/include/openbios/nvram.h trunk/openbios-devel/modules/nvram.c Log: const qualifier for nvram_init parameter (Igor Kovalenko)
Modified: trunk/openbios-devel/include/openbios/nvram.h =================================================================== --- trunk/openbios-devel/include/openbios/nvram.h 2009-07-31 11:16:24 UTC (rev 517) +++ trunk/openbios-devel/include/openbios/nvram.h 2009-08-02 10:58:33 UTC (rev 518) @@ -22,7 +22,7 @@ extern void arch_nvram_put( char *buf );
extern void nvconf_init( void ); -extern void nvram_init( char *path ); +extern void nvram_init( const char *path ); extern void update_nvram( void );
#endif /* _H_NVRAM */
Modified: trunk/openbios-devel/modules/nvram.c =================================================================== --- trunk/openbios-devel/modules/nvram.c 2009-07-31 11:16:24 UTC (rev 517) +++ trunk/openbios-devel/modules/nvram.c 2009-08-02 10:58:33 UTC (rev 518) @@ -297,7 +297,7 @@
void -nvram_init( char *path ) +nvram_init( const char *path ) { nvconf_init();