]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
Some comments following Grub standard of code.
authorCarles Pina i Estany <carles@pina.cat>
Sat, 21 Nov 2009 23:11:14 +0000 (23:11 +0000)
committerCarles Pina i Estany <carles@pina.cat>
Sat, 21 Nov 2009 23:11:14 +0000 (23:11 +0000)
gettext/gettext.c

index 9a658f5db902813ba7db9ebaf792fbe6654c51d7..ca00a86b79da838a9b1c7fdb825d459217dea8e2 100644 (file)
@@ -222,12 +222,12 @@ grub_gettext_init_ext (const char *lang)
   
   fd_mo = 0;
       
-  // mo_file e.g.: /boot/grub/locale/ca.mo
+  /* mo_file e.g.: /boot/grub/locale/ca.mo   */
 
   mo_file = grub_malloc (grub_strlen (locale_dir) + sizeof ("/") + grub_strlen (lang) + sizeof(".mo"));
  
-  // Warning: if changing some paths in the below line, change the grub_malloc
-  // contents below
+  /* Warning: if changing some paths in the below line, change the grub_malloc
+     contents below.  */
  
   grub_sprintf (mo_file, "%s/%s.mo", locale_dir, lang);