From becf548fe73f30debf8655e757b23d9240d9534c Mon Sep 17 00:00:00 2001 From: Jason Dossett Date: Wed, 20 Sep 2017 14:30:41 -0400 Subject: [PATCH] Fix incrementing in vnode_split_raw.cpp for comment consistnecy In vnod_split_raw.cpp the incrementing of extensions went A09 -> A10. The comments however indicate the incrementing should go A09 -> A0A. This commit changes the code to make the incrementing consistent with what is described in the code's comments. Signed-off-by: Jason Dossett --- lib/vnode_split_raw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vnode_split_raw.cpp b/lib/vnode_split_raw.cpp index 955e241..799df35 100644 --- a/lib/vnode_split_raw.cpp +++ b/lib/vnode_split_raw.cpp @@ -139,7 +139,7 @@ int split_raw_increment_fname (char *fn) } /* Increment */ - if(incval(ext[2],10)){ + if(incval(ext[2],36)){ if(incval(ext[1],36)){ if(incval(ext[0],36)){ return EINVAL;