You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by pi...@apache.org on 2008/03/17 12:48:24 UTC

svn commit: r637851 - /webservices/axis2/trunk/c/util/src/env.c

Author: pini
Date: Mon Mar 17 04:48:22 2008
New Revision: 637851

URL: http://svn.apache.org/viewvc?rev=637851&view=rev
Log:
Fixed typos

Modified:
    webservices/axis2/trunk/c/util/src/env.c

Modified: webservices/axis2/trunk/c/util/src/env.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/env.c?rev=637851&r1=637850&r2=637851&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/src/env.c (original)
+++ webservices/axis2/trunk/c/util/src/env.c Mon Mar 17 04:48:22 2008
@@ -1,4 +1,3 @@
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -25,7 +24,7 @@
 
 AXIS2_EXTERN axutil_env_t *AXIS2_CALL
 axutil_env_create(
-    axutil_allocator_t * allocator)
+    axutil_allocator_t *allocator)
 {
     axutil_env_t *env;
 
@@ -64,9 +63,9 @@
 
 AXIS2_EXTERN axutil_env_t *AXIS2_CALL
 axutil_env_create_with_error_log(
-    axutil_allocator_t * allocator,
-    axutil_error_t * error,
-    axutil_log_t * log)
+    axutil_allocator_t *allocator,
+    axutil_error_t *error,
+    axutil_log_t *log)
 {
     axutil_env_t *env;
     if (!allocator || !error)
@@ -101,18 +100,18 @@
 
 AXIS2_EXTERN axutil_env_t *AXIS2_CALL
 axutil_env_create_with_error(
-    axutil_allocator_t * allocator,
-    axutil_error_t * error)
+    axutil_allocator_t *allocator,
+    axutil_error_t *error)
 {
     return axutil_env_create_with_error_log(allocator, error, NULL);
 }
 
 AXIS2_EXTERN axutil_env_t *AXIS2_CALL
 axutil_env_create_with_error_log_thread_pool(
-    axutil_allocator_t * allocator,
-    axutil_error_t * error,
-    axutil_log_t * log,
-    axutil_thread_pool_t * pool)
+    axutil_allocator_t *allocator,
+    axutil_error_t *error,
+    axutil_log_t *log,
+    axutil_thread_pool_t *pool)
 {
     axutil_env_t *env;
     if (!allocator || !error || !pool)
@@ -146,7 +145,7 @@
 
 AXIS2_EXTERN axutil_env_t *AXIS2_CALL
 axutil_env_create_all(
-    const axis2_char_t * log_file,
+    const axis2_char_t *log_file,
     const axutil_log_levels_t log_level)
 {
     axutil_env_t *env = NULL;
@@ -193,7 +192,7 @@
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL
 axutil_env_check_status(
-    const axutil_env_t * env)
+    const axutil_env_t *env)
 {
     if (env && env->error)
         return AXIS2_ERROR_GET_STATUS_CODE(env->error);
@@ -203,7 +202,7 @@
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL
 axutil_env_enable_log(
-    axutil_env_t * env,
+    axutil_env_t *env,
     axis2_bool_t enable)
 {
     if (env)
@@ -217,7 +216,7 @@
 
 AXIS2_EXTERN void AXIS2_CALL
 axutil_env_free(
-    axutil_env_t * env)
+    axutil_env_t *env)
 {
     axutil_allocator_t *allocator = NULL;
 
@@ -261,7 +260,7 @@
 
 AXIS2_EXTERN void AXIS2_CALL
 axutil_env_free_masked(
-    axutil_env_t * env,
+    axutil_env_t *env,
     char mask)
 {
     if (!env)
@@ -296,7 +295,7 @@
 
 AXIS2_EXTERN axis2_status_t AXIS2_CALL
 axutil_env_increment_ref(
-    axutil_env_t * env)
+    axutil_env_t *env)
 {
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     env->ref++;



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org