Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/agent/tcf
diff options
context:
space:
mode:
authorEugene Tarassov2019-10-25 17:37:35 +0000
committerEugene Tarassov2019-10-25 17:37:35 +0000
commit5298ec3de8b83288a6c6c56d420e148860ba4219 (patch)
tree2aa7c59bc7e8bacadf6194892725b08d4c93a17e /agent/tcf
parent14c773c0bb643040aa5a4f7e271dc1caa4a6d2d7 (diff)
downloadorg.eclipse.tcf.agent-5298ec3de8b83288a6c6c56d420e148860ba4219.tar.gz
org.eclipse.tcf.agent-5298ec3de8b83288a6c6c56d420e148860ba4219.tar.xz
org.eclipse.tcf.agent-5298ec3de8b83288a6c6c56d420e148860ba4219.zip
TCF Agent: code cleanup: CR/LF -> LF
Diffstat (limited to 'agent/tcf')
-rw-r--r--agent/tcf/services/expressions.c12
-rw-r--r--agent/tcf/services/registers.c8
2 files changed, 10 insertions, 10 deletions
diff --git a/agent/tcf/services/expressions.c b/agent/tcf/services/expressions.c
index fd95a8d6..2a76e32c 100644
--- a/agent/tcf/services/expressions.c
+++ b/agent/tcf/services/expressions.c
@@ -4203,7 +4203,7 @@ static void get_context_cache_client(void * x) {
cache_exit();
- if (!is_channel_closed(c)) {
+ if (!is_channel_closed(c)) {
write_stringz(&c->out, "R");
write_stringz(&c->out, args->token);
write_errno(&c->out, err);
@@ -4281,7 +4281,7 @@ static void get_children_cache_client(void * x) {
cache_exit();
- if (!is_channel_closed(c)) {
+ if (!is_channel_closed(c)) {
write_stringz(&c->out, "R");
write_stringz(&c->out, args->token);
@@ -4378,7 +4378,7 @@ static void command_create_cache_client(void * x) {
cache_exit();
- if (!is_channel_closed(c)) {
+ if (!is_channel_closed(c)) {
write_stringz(&c->out, "R");
write_stringz(&c->out, args->token);
write_errno(&c->out, err);
@@ -4490,7 +4490,7 @@ static void command_evaluate_cache_client(void * x) {
cache_exit();
- if (!is_channel_closed(c)) {
+ if (!is_channel_closed(c)) {
write_stringz(&c->out, "R");
write_stringz(&c->out, args->token);
if (err) {
@@ -4736,7 +4736,7 @@ static void command_assign_cache_client(void * x) {
cache_exit();
- if (!is_channel_closed(c)) {
+ if (!is_channel_closed(c)) {
write_stringz(&c->out, "R");
write_stringz(&c->out, args->token);
write_errno(&c->out, err);
@@ -4782,7 +4782,7 @@ static void command_dispose_cache_client(void * x) {
err = ERR_INV_CONTEXT;
}
- if (!is_channel_closed(c)) {
+ if (!is_channel_closed(c)) {
write_stringz(&c->out, "R");
write_stringz(&c->out, args->token);
write_errno(&c->out, err);
diff --git a/agent/tcf/services/registers.c b/agent/tcf/services/registers.c
index dbe2efa5..c8f27779 100644
--- a/agent/tcf/services/registers.c
+++ b/agent/tcf/services/registers.c
@@ -445,7 +445,7 @@ static void command_get_cache_client(void * x) {
cache_exit();
- if (!is_channel_closed(c)) {
+ if (!is_channel_closed(c)) {
write_stringz(&c->out, "R");
write_stringz(&c->out, args->token);
write_errno(&c->out, trap.error);
@@ -509,7 +509,7 @@ static void command_set_cache_client(void * x) {
if (notify) send_event_register_changed(args->id);
- if (!is_channel_closed(c)) {
+ if (!is_channel_closed(c)) {
write_stringz(&c->out, "R");
write_stringz(&c->out, args->token);
write_errno(&c->out, trap.error);
@@ -651,7 +651,7 @@ static void command_getm_cache_client(void * x) {
cache_exit();
- if (!is_channel_closed(c)) {
+ if (!is_channel_closed(c)) {
write_stringz(&c->out, "R");
write_stringz(&c->out, args->token);
write_errno(&c->out, trap.error);
@@ -717,7 +717,7 @@ static void command_setm_cache_client(void * x) {
}
}
- if (!is_channel_closed(c)) {
+ if (!is_channel_closed(c)) {
write_stringz(&c->out, "R");
write_stringz(&c->out, args->token);
write_errno(&c->out, trap.error);

Back to the top