On Monday, February 19, 2007 at 18:39:05 (+0000) Andy Parkins writes: >... >+#define PATH_REMOTES "remotes/" >+#define STRLEN_PATH_REMOTES 8 >... Would this be less error-prone, and just as efficient?: #define PATH_REMOTES "remotes/" #define LIT_STRLEN(S) ((sizeof(S) / sizeof(S[0])) -1) #define STRLEN_PATH_REMOTES LIT_STRLEN(PATH_REMOTES) Bill - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html