summaryrefslogtreecommitdiff
path: root/ws2a
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2016-05-11 21:24:42 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2016-05-11 21:24:42 -0400
commit77450cf473f7acb3fa0b871388ed2c52b77d08da (patch)
tree297f7faac1336840e59f8e9157790f7fce230772 /ws2a
parentce198c7d08ac4f4333d17d14982c8bb39bb1992d (diff)
downloadwebpage-77450cf473f7acb3fa0b871388ed2c52b77d08da.tar.gz
webpage-77450cf473f7acb3fa0b871388ed2c52b77d08da.tar.bz2
webpage-77450cf473f7acb3fa0b871388ed2c52b77d08da.zip
Removed debug statments from bug commenting
Diffstat (limited to 'ws2a')
-rw-r--r--ws2a/bugcomment.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ws2a/bugcomment.c b/ws2a/bugcomment.c
index bb789ad..5214a99 100644
--- a/ws2a/bugcomment.c
+++ b/ws2a/bugcomment.c
@@ -73,7 +73,7 @@ char* useridhash(char* str){
unsigned int strp = 0;
i = 0;
while(i < tloop){
- printf("i:%d hashp:%u strp:%u tloop:%d\n",i,hashp,strp,tloop);
+ //printf("i:%d hashp:%u strp:%u tloop:%d\n",i,hashp,strp,tloop);
char tchar = str[strp%len];
hash[hashp%20] += str[strp%len];
str[strp%len]+=1;
@@ -82,7 +82,7 @@ char* useridhash(char* str){
i++;
}
i = 0;
- printf("Before characterizeing the hash, it was: %s\n",hash);
+ //printf("Before characterizeing the hash, it was: %s\n",hash);
while(i < 20){
//printf("Normalizeing %c(%u) as %c(%u)\n",hash[i],(unsigned int)hash[i],(hash[i] % 92) + 32,(hash[i] % 92) + 32);
unsigned int hashnum = hash[i];
@@ -91,7 +91,7 @@ char* useridhash(char* str){
hash[i] = modedhashnum + 32;
i++;
}
- printf("Resulting hash was:%s\n",hash);
+ //printf("Resulting hash was:%s\n",hash);
return hash;
}