Browse Source

Fix commnet format.

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>

git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/slim/trunk@186 7c53e7cc-98ea-0310-8f1f-a0b24da60408
iwamatsu 12 years ago
parent
commit
b37baadf60
1 changed files with 5 additions and 3 deletions
  1. 5 3
      const.h

+ 5 - 3
const.h

@@ -32,17 +32,19 @@
 #define OK_EXIT     0
 #define ERR_EXIT    1
 
-// duration for showing error messages, as "login command failed", in seconds
+/* duration for showing error messages,
+ * as "login command failed", in seconds 
+ */
 #define ERROR_DURATION  5
 
 // variables replaced in login_cmd
 #define SESSION_VAR     "%session"
 #define THEME_VAR       "%theme"
 
-// variables replaced in pre-session_cmd and post-session_cmd
+/* variables replaced in pre-session_cmd and post-session_cmd */
 #define USER_VAR       "%user"
 
-// max height/width for images
+/* max height/width for images */
 #define MAX_DIMENSION 10000
 
 #endif